Skip to content

Commit bfe41ad

Browse files
committed
Extend build workflow to run tests on macOS with/without JNA
1 parent b16903d commit bfe41ad

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/build.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,17 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest, macos-latest, windows-latest]
1616
jdk: [11, 17, 21]
17-
argLine: [-Dengineering.swat.java-watch.mac=jdk, -Dengineering.swat.java-watch.mac=jna]
18-
exclude:
19-
- os: [ubuntu-latest, windows-latest]
17+
argLine: []
18+
include:
19+
- os: macos-latest
2020
argLine: -Dengineering.swat.java-watch.mac=jdk
21-
- os: ubuntu-latest
21+
- os: macos-latest
2222
argLine: -Dengineering.swat.java-watch.mac=jna
23+
# exclude:
24+
# - os: [ubuntu-latest, windows-latest]
25+
# argLine: -Dengineering.swat.java-watch.mac=jdk
26+
# - os: ubuntu-latest
27+
# argLine: -Dengineering.swat.java-watch.mac=jna
2328

2429
fail-fast: false
2530
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)