File tree Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Expand file tree Collapse file tree 1 file changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,11 @@ commands:
9
9
- restore_cache :
10
10
key : v1-gradle-wrapper-{{ arch }}-{{ checksum "gradle/wrapper/gradle-wrapper.properties" }}
11
11
- restore_cache :
12
- key : v1-gradle-cache-{{ arch }}-{{ checksum "build.gradle" }}
12
+ key : v1-gradle-cache-{{ arch }}-{{ checksum "build.gradle" }}-{{ checksum "settings.gradle" }}-{{ checksum "gradle.properties" }}-{{ checksum "app/build.gradle.kts" }}
13
+ restore_bundler_cache :
14
+ steps :
15
+ - restore_cache :
16
+ key : v1-bundler-cache-{{ checksum "Gemfile.lock" }}
13
17
14
18
save_gradle_cache :
15
19
steps :
@@ -20,7 +24,13 @@ commands:
20
24
- save_cache :
21
25
paths :
22
26
- ~/.gradle/caches
23
- key : v1-gradle-cache-{{ arch }}-{{ checksum "build.gradle" }}
27
+ key : v1-gradle-cache-{{ arch }}-{{ checksum "build.gradle" }}-{{ checksum "settings.gradle" }}-{{ checksum "gradle.properties" }}-{{ checksum "app/build.gradle.kts" }}
28
+ save_bundler_cache :
29
+ steps :
30
+ - save_cache :
31
+ paths :
32
+ - vendor/bundle
33
+ key : v1-bundler-cache-{{ checksum "Gemfile.lock" }}
24
34
25
35
executors :
26
36
android-machine :
@@ -37,13 +47,15 @@ jobs:
37
47
steps :
38
48
- checkout
39
49
- restore_gradle_cache
50
+ - restore_bundler_cache
40
51
- ruby/install-deps :
41
52
with-cache : true
42
53
- run :
43
54
name : Fastlane - run all tests with coverage report
44
55
command : |
45
56
bundle exec fastlane testDev
46
57
- save_gradle_cache
58
+ - save_bundler_cache
47
59
- run :
48
60
name : Analyze on SonarCloud
49
61
command : ./gradlew lintDebug sonar
You can’t perform that action at this time.
0 commit comments