Skip to content

Commit fe5b8ab

Browse files
committed
ci: hopefully add caching to jobs that run on docker
1 parent 468bb3b commit fe5b8ab

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.circleci/config.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,14 +77,15 @@ jobs:
7777
executor: android-docker
7878
resource_class: large
7979
steps:
80-
- checkout
81-
- restore_gradle_cache
80+
- setup_android
8281
- run:
8382
name: Prepare Fastlane
8483
command: sudo bundle update
8584
- run:
8685
name: Distribute to Firebase AppTester Dev
8786
command: bundle exec fastlane distDev
87+
- save_gradle_cache
88+
- save_bundler_cache
8889
- store_artifacts:
8990
path: /home/circleci/project/app/build/outputs/apk/debug/app-debug.apk
9091
destination: fastlane-output-debug
@@ -93,8 +94,7 @@ jobs:
9394
executor: android-docker
9495
resource_class: large
9596
steps:
96-
- checkout
97-
- restore_gradle_cache
97+
- android_setup
9898
- run:
9999
name: Prepare Fastlane
100100
command: sudo bundle update
@@ -104,6 +104,8 @@ jobs:
104104
- run:
105105
name: Distribute to Firebase AppTester Prod
106106
command: bundle exec fastlane distProd
107+
- save_gradle_cache
108+
- save_bundler_cache
107109
- store_artifacts:
108110
path: /home/circleci/project/app/build/outputs/bundle/release/app-release.aab
109111
destination: fastlane-output-release

0 commit comments

Comments
 (0)