aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiam Miller-Cushon <cushon@google.com>2021-09-28 10:18:23 -0700
committerJavac Team <javac-team+copybara@google.com>2021-09-28 10:18:58 -0700
commit407dd72413a16937f29cf962d7a798916c8b2272 (patch)
tree552fc09009a4cdaa814cf00e717fbc9640df2063
parentdd6d554e4efc7cdc508ab84688a18f9110bcbcd6 (diff)
downloadturbine-407dd72413a16937f29cf962d7a798916c8b2272.tar.gz
Update to non-EA JDK 17 builds
and add JDK 8 to the matrix. PiperOrigin-RevId: 399469642
-rw-r--r--.github/workflows/ci.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a4b86d9..afaddc4 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -29,19 +29,19 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
- java: [ 16, 11, 8 ]
+ java: [ 17, 11, 8 ]
experimental: [ false ]
include:
# Only test on macos and windows with a single recent JDK to avoid a
# combinatorial explosion of test configurations.
- os: macos-latest
- java: 16
+ java: 17
experimental: false
- os: windows-latest
- java: 16
+ java: 17
experimental: false
- os: ubuntu-latest
- java: 17-ea
+ java: 18-ea
experimental: true
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
@@ -56,7 +56,7 @@ jobs:
uses: actions/setup-java@v2
with:
java-version: ${{ matrix.java }}
- distribution: 'temurin'
+ distribution: 'zulu'
cache: 'maven'
- name: 'Install'
shell: bash