aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/pull_request.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/pull_request.yml')
-rw-r--r--.github/workflows/pull_request.yml28
1 files changed, 25 insertions, 3 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml
index e3b84a37..a6cfccc3 100644
--- a/.github/workflows/pull_request.yml
+++ b/.github/workflows/pull_request.yml
@@ -15,10 +15,32 @@ jobs:
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- - uses: actions/cache@v1
+ - name: Generate cache key
+ run: ./.github/checksum.sh checksum.txt
+
+ - name: Cache gradle modules
+ uses: actions/cache@v1
+ with:
+ path: ~/.gradle/caches/modules-2
+ key: ${{ runner.os }}-gradlemodules-${{ hashFiles('checksum.txt') }}
+ restore-keys: |
+ ${{ runner.os }}-gradlemodules-
+
+ - name: Cache gradle jars
+ uses: actions/cache@v1
+ with:
+ path: ~/.gradle/caches/jars-3
+ key: ${{ runner.os }}-gradlejars-${{ hashFiles('checksum.txt') }}
+ restore-keys: |
+ ${{ runner.os }}-gradlejars-
+
+ - name: Cache gradle build
+ uses: actions/cache@v1
with:
- path: ~/.gradle/caches
- key: gradle-${{ runner.os }}-${{ hashFiles('**/build.gradle') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/dependencies.gradle') }}
+ path: ~/.gradle/caches/build-cache-1
+ key: ${{ runner.os }}-gradlebuildcache-${{ hashFiles('checksum.txt') }}
+ restore-keys: |
+ ${{ runner.os }}-gradlebuildcache-
- name: Run unit tests
run: ./gradlew spotlessCheck test${{ matrix.variant }} lint${{ matrix.variant}} -Dpre-dex=false