File tree 1 file changed +8
-3
lines changed
1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change 86
86
strategy :
87
87
fail-fast : false
88
88
matrix :
89
- os : [ubuntu-latest, macos-latest]
89
+ os : [ubuntu-latest, macos-latest, windows-latest ]
90
90
runs-on : ${{ matrix.os }}
91
91
continue-on-error : true
92
92
steps :
@@ -104,8 +104,13 @@ jobs:
104
104
github-token : ${{ secrets.GITHUB_TOKEN }}
105
105
native-image-job-reports : " true"
106
106
cache : " maven"
107
- - name : " Native"
108
- run : mvn -Pnative -DskipTests package -pl core -am && util/test-native.sh
107
+ - name : " Native Build"
108
+ run : mvn -Pnative -DskipTests package -pl core -am
109
+ - name : " Native Test"
110
+ # Bash script for testing won't work on Windows
111
+ # TODO: Anyone reading this wants to write a *.bat or *.ps1 equivalent?
112
+ if : ${{ matrix.os != 'windows-latest' }}
113
+ run : util/test-native.sh
109
114
110
115
publish_snapshot :
111
116
name : " Publish snapshot"
You can’t perform that action at this time.
0 commit comments