Skip to content

Commit

Permalink
reduce build matrix to run windows and macos only for java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseifert committed Jan 4, 2022
1 parent 090ad3c commit aeaf25a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/maven.yml
Expand Up @@ -24,9 +24,16 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
os: [ubuntu-latest]
java: [8, 11, 17]
jdk: ['temurin']
jdk: [temurin]
include:
- java: 11
os: windows-latest
jdk: temurin
- java: 11
os: macos-latest
jdk: temurin
fail-fast: false

runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit aeaf25a

Please sign in to comment.