mirror of
https://github.com/mihonapp/mihon.git
synced 2025-10-23 03:28:55 +02:00
Use eskatos/gradle-command-action instead of manually handling caching
This commit is contained in:
20
.github/workflows/build_check.yml
vendored
20
.github/workflows/build_check.yml
vendored
@@ -38,18 +38,10 @@ jobs:
|
||||
mkdir -p ~/.gradle
|
||||
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
|
||||
run: ./gradlew assembleStandardDebug
|
||||
uses: eskatos/gradle-command-action@v1
|
||||
with:
|
||||
arguments: assembleStandardDebug
|
||||
wrapper-cache-enabled: true
|
||||
dependencies-cache-enabled: true
|
||||
configuration-cache-enabled: true
|
||||
|
Reference in New Issue
Block a user