Skip to content

Commit

Permalink
Add macos-13 to the matrix and avoid macos-14+/java-8 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jchambers committed May 19, 2024
1 parent 9829ebe commit 6d2684e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04, macos-latest]
os: [ubuntu-22.04, macos-13, macos-latest]
java: [8, 17, 21]
transport: [native, JDK]
tls: [native, JDK]
# The macos-14 (and presumably newer) runners are using arm64, and Temurin doesn't support Java 8 on arm64
exclude:
- os: macos-latest
java: 8
fail-fast: false
name: JDK ${{ matrix.java }}, ${{ matrix.os }}, ${{ matrix.transport }} transport, ${{ matrix.tls }} SSL provider

Expand Down

0 comments on commit 6d2684e

Please sign in to comment.