6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AndroidプロジェクトでGitHub Actionsのcacheを利用しようとしたが出来なかったメモ

Last updated at Posted at 2019-11-22

追記 2020/1/7

GitHub Actionsのcacheのlimitが一気に2GBに増えた!!!すごい!!!
https://github.com/actions/cache/releases/tag/v1.1.0

概要

Androidプロジェクトでどうcacheを利用するか?

  • chache対象のディレクトリ/ファイルはなにか?
    • .gradle
  • CircleCIの設定を参考にhashを計算してそれをkeyにする。
- name: cache gradle
  id: cache-gradle
  uses: actions/cache@v1
  with:
    path: ~/.gradle
    key: ${{ runner.os }}-${{ hashFiles('build.gradle') }}-${{ hashFiles('app/build.gradle') }}

Cache sizeのLimit

  • GitHub ActionsでのcacheのLimitは400MBである。
  • .gradleをcacheしようとすると400MBを超えてしまい、cacheをsaveできなかった。
[warning]Cache size of ~602 MB (631067374 B) is over the 400MB limit, not saving cache.

まとめ

  • .gradleをそのままcacheしようとしたが出来なかった
  • 現状cacheを利用するには、cache sizeのlimitが緩和されるか、cacheするファイル/ディレクトリを絞る必要があった

参考

6
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?