|
@@ -38,18 +38,10 @@ jobs:
|
|
mkdir -p ~/.gradle
|
|
mkdir -p ~/.gradle
|
|
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
|
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
- - name: Generate Gradle cache key
|
|
|
|
- run: ./.github/runner-files/checksum.sh checksum.txt
|
|
|
|
-
|
|
|
|
- - name: Cache Gradle dependencies
|
|
|
|
- uses: actions/cache@v2
|
|
|
|
- continue-on-error: true # continue if the cache restore/upload fails
|
|
|
|
- with:
|
|
|
|
- path: |
|
|
|
|
- ~/.gradle/caches/build-cache-*
|
|
|
|
- ~/.gradle/caches/jars-*
|
|
|
|
- ~/.gradle/caches/modules-*
|
|
|
|
- key: ${{ runner.os }}-gradle-${{ hashFiles('checksum.txt') }}
|
|
|
|
-
|
|
|
|
- name: Build app
|
|
- name: Build app
|
|
- run: ./gradlew assembleStandardDebug
|
|
|
|
|
|
+ uses: eskatos/gradle-command-action@v1
|
|
|
|
+ with:
|
|
|
|
+ arguments: assembleStandardDebug
|
|
|
|
+ wrapper-cache-enabled: true
|
|
|
|
+ dependencies-cache-enabled: true
|
|
|
|
+ configuration-cache-enabled: true
|