Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,16 @@ jobs:
build-maven:
runs-on: ${{ matrix.os }}
strategy:
# The full Java sweep runs on ubuntu only; macOS and Windows build with the
# minimum supported (11) and the latest (26) Java.
matrix:
os: [ 'ubuntu-latest' ]
java: [ '11','17','21','25','26']
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
include:
- { os: 'macos-latest', java: '11' }
- { os: 'macos-latest', java: '26' }
- { os: 'windows-latest', java: '11' }
- { os: 'windows-latest', java: '26' }
fail-fast: false
steps:
- name: Install wine+rpm for distribution
Expand Down