aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorFabian Meumertzheim <meumertzheim@code-intelligence.com>2021-10-21 09:50:11 +0200
committerFabian Meumertzheim <fabian@meumertzhe.im>2021-10-21 10:45:35 +0200
commit02219ea0439afa908ca1a67a5ae4e02b8ecc379c (patch)
tree0f651e64b270d15c5de866d439031115b556e237 /.github
parent09c56b9fc21cacaa052ccf689eb06b52fb7632a4 (diff)
downloadjazzer-api-02219ea0439afa908ca1a67a5ae4e02b8ecc379c.tar.gz
Run CI tests against OpenJDK 17
Now that 17 is the most recent LTS version, we should test against it. We keep a single run of ubuntu-latest/JDK 15 to cover OSS-Fuzz.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/run-all-tests.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/run-all-tests.yml b/.github/workflows/run-all-tests.yml
index f08d7f42..ac122a01 100644
--- a/.github/workflows/run-all-tests.yml
+++ b/.github/workflows/run-all-tests.yml
@@ -15,7 +15,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
- jdk: [8, 15]
+ jdk: [8, 15, 17]
+ exclude:
+ # Only test against JDK 15 with Ubuntu since this is what OSS-Fuzz runs on.
+ - os: macos-latest
+ jdk: 15
+ - os: windows-latest
+ jdk: 15
include:
- os: ubuntu-latest
arch: "linux"