summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2020-11-03 19:37:28 +0100
committerFabian Mastenbroek <mail.fabianm@gmail.com>2020-11-03 19:40:01 +0100
commit71fed6578389f021b13da8f6bc8f8ec9e85e363b (patch)
treec553d12a9e287ad32701625d1268e73759795e5d /.github
parente4a1c21749d42fcdf4c6ce89899d62a2501331ff (diff)
Test Java 8 and Java 15 in CI pipeline
This change updates the Github Actions workflow for the simulator to test both Java 8 and Java 15.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-simulator.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build-simulator.yml b/.github/workflows/build-simulator.yml
index 8d9356b4..57e8b46d 100644
--- a/.github/workflows/build-simulator.yml
+++ b/.github/workflows/build-simulator.yml
@@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
- java: [14]
+ java: [8, 15]
steps:
- name: Checkout repository
uses: actions/checkout@v2
@@ -30,9 +30,9 @@ jobs:
- uses: actions/cache@v1
with:
path: ~/.gradle/caches
- key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
+ key: ${{ runner.os }}-${{ matrix.java }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
- ${{ runner.os }}-gradle-
+ ${{ runner.os }}-${{ matrix.java }}-gradle-
- name: Build with Gradle
run: ./gradlew assemble
- name: Check with Gradle