File tree Expand file tree Collapse file tree 4 files changed +13
-2
lines changed
tests/integration/packaging
inject/src/test/java/io/helidon/tests/integration/packaging/inject
mp-1/src/test/java/io/helidon/tests/integration/packaging/mp1
mp-3/src/test/java/io/helidon/tests/integration/packaging/mp3 Expand file tree Collapse file tree 4 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -315,12 +315,12 @@ jobs:
315315 timeout-minutes : 30
316316 strategy :
317317 matrix :
318- os : [ ubuntu-20.04, macos-14 ]
318+ os : [ ubuntu-20.04, macos-14, windows-2022 ]
319319 packaging : [ jar, jlink ]
320320 include :
321321 - { os: ubuntu-20.04, platform: linux }
322322 - { os: macos-14, platform: macos }
323- # - { os: windows-2022, platform: windows }
323+ - { os: windows-2022, platform: windows }
324324 runs-on : ${{ matrix.os }}
325325 name : tests/packaging-${{ matrix.packaging }}-${{ matrix.platform }}
326326 steps :
Original file line number Diff line number Diff line change 1818import io .helidon .tests .integration .harness .ProcessRunner .ExecMode ;
1919
2020import org .junit .jupiter .api .Test ;
21+ import org .junit .jupiter .api .condition .DisabledOnOs ;
22+ import org .junit .jupiter .api .condition .OS ;
2123
2224class InjectJlinkTestIT extends InjectPackagingTestIT {
2325
@@ -27,11 +29,13 @@ ExecMode execMode() {
2729 }
2830
2931 @ Test
32+ @ DisabledOnOs (value = OS .WINDOWS , disabledReason = "application is not a valid Win32 application" )
3033 void testExitOnStarted () {
3134 doTestExitOnStarted ();
3235 }
3336
3437 @ Test
38+ @ DisabledOnOs (value = OS .WINDOWS , disabledReason = "application is not a valid Win32 application" )
3539 void testWebClientService () {
3640 doTestWebClientService ();
3741 }
Original file line number Diff line number Diff line change 1818import io .helidon .tests .integration .harness .ProcessRunner .ExecMode ;
1919
2020import org .junit .jupiter .api .Test ;
21+ import org .junit .jupiter .api .condition .DisabledOnOs ;
22+ import org .junit .jupiter .api .condition .OS ;
2123
2224class Mp1JlinkTestIT extends Mp1PackagingTestIT {
2325
@@ -27,6 +29,7 @@ ExecMode execMode() {
2729 }
2830
2931 @ Test
32+ @ DisabledOnOs (value = OS .WINDOWS , disabledReason = "application is not a valid Win32 application" )
3033 void testApp () {
3134 doTestApp ();
3235 }
Original file line number Diff line number Diff line change 1818import io .helidon .tests .integration .harness .ProcessRunner .ExecMode ;
1919
2020import org .junit .jupiter .api .Test ;
21+ import org .junit .jupiter .api .condition .DisabledOnOs ;
22+ import org .junit .jupiter .api .condition .OS ;
2123
2224class Mp3JlinkTestIT extends Mp3PackagingTestIT {
2325
@@ -27,11 +29,13 @@ ExecMode execMode() {
2729 }
2830
2931 @ Test
32+ @ DisabledOnOs (value = OS .WINDOWS , disabledReason = "application is not a valid Win32 application" )
3033 void testExitOnStarted () {
3134 doTestExitOnStarted ();
3235 }
3336
3437 @ Test
38+ @ DisabledOnOs (value = OS .WINDOWS , disabledReason = "application is not a valid Win32 application" )
3539 void testGreetResource () {
3640 doTestGreetResource ();
3741 }
You can’t perform that action at this time.
0 commit comments