File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,17 @@ jobs:
12
12
test :
13
13
strategy :
14
14
matrix :
15
- os : [ubuntu-latest, macos-latest, windows-latest]
15
+ os :
16
+ - image : ubuntu-latest
17
+ - image : macos-latest
18
+ mac-backend : jdk
19
+ - image : macos-latest
20
+ mac-backend : jna
21
+ - image : windows-latest
16
22
jdk : [11, 17, 21]
23
+
17
24
fail-fast : false
18
- runs-on : ${{ matrix.os }}
25
+ runs-on : ${{ matrix.os.image }}
19
26
steps :
20
27
- uses : actions/checkout@v4
21
28
- run : echo " " >> pom.xml # make sure the cache is slightly different for these runners
27
34
cache : ' maven'
28
35
29
36
- name : test
30
- run : mvn -B clean test
37
+ run : mvn -B clean test -DargLine="-Dengineering.swat.java-watch.mac=${{ matrix.os.mac-backend }}"
31
38
env :
32
39
DELAY_FACTOR : 3
33
40
You can’t perform that action at this time.
0 commit comments