Skip to content

Commit 30a0e4d

Browse files
committed
Fix CI (dropped Windows accidentally)
1 parent c3a00ea commit 30a0e4d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,19 @@ permissions:
2121

2222
jobs:
2323
build:
24-
runs-on: 'ubuntu-22.04'
24+
# Here we DO need "os" option, to include Windows
25+
runs-on: ${{ matrix.os }}
2526
strategy:
2627
fail-fast: false
2728
matrix:
2829
java_version: ['8', '11', '17', '21', '22']
30+
os: ['ubuntu-22.04']
2931
include:
3032
- java_version: '8'
33+
os: 'ubuntu-22.04'
3134
release_build: 'R'
35+
- java_version: '8'
36+
os: 'windows-latest'
3237
is_windows: 'W'
3338
env:
3439
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"

0 commit comments

Comments
 (0)