Skip to content

Commit

Permalink
Fix CI (dropped Windows accidentally)
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Dec 3, 2024
1 parent c3a00ea commit 30a0e4d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,19 @@ permissions:

jobs:
build:
runs-on: 'ubuntu-22.04'
# Here we DO need "os" option, to include Windows
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
java_version: ['8', '11', '17', '21', '22']
os: ['ubuntu-22.04']
include:
- java_version: '8'
os: 'ubuntu-22.04'
release_build: 'R'
- java_version: '8'
os: 'windows-latest'
is_windows: 'W'
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
Expand Down

0 comments on commit 30a0e4d

Please sign in to comment.