mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-11 21:37:47 +01:00
Merge pull request #2577 from iBotPeaches/build-system
build: cache gradle based on java version
This commit is contained in:
commit
ea3427a3a5
16
.github/workflows/test.yml
vendored
16
.github/workflows/test.yml
vendored
@ -15,6 +15,7 @@ on:
|
||||
|
||||
jobs:
|
||||
build-and-test-with-Java-8-and-later:
|
||||
runs-on: ${{ matrix.os }}
|
||||
name: Build/Test (JDK ${{ matrix.java }}, ${{ matrix.os }})
|
||||
strategy:
|
||||
fail-fast: false
|
||||
@ -22,24 +23,27 @@ jobs:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macOS-latest, windows-latest]
|
||||
java: [8, 9, 10, 11, 12, 13, 14]
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
steps:
|
||||
- uses: actions/cache@v2
|
||||
with:
|
||||
path: |
|
||||
~/.gradle/caches
|
||||
~/.gradle/wrapper
|
||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-gradle-
|
||||
key: ${{ runner.os }}-gradle-${{ matrix.java }}-${{ hashFiles('**/*.gradle*') }}
|
||||
restore-keys: ${{ runner.os }}-${{ matrix.java }}-gradle-
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Set up JDK ${{ matrix.java }}
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: ${{ matrix.java }}
|
||||
|
||||
- name: Build and test
|
||||
run: ./gradlew.bat build shadowJar proguard
|
||||
if: startsWith(matrix.os, 'windows') == true
|
||||
run: ./gradlew.bat build shadowJar proguard
|
||||
|
||||
- name: Build and test
|
||||
if: startsWith(matrix.os, 'windows') != true
|
||||
run: ./gradlew build shadowJar proguard
|
||||
if: startsWith(matrix.os, 'windows') != true
|
Loading…
Reference in New Issue
Block a user