File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -374,7 +374,7 @@ jobs:
374374 # testing with the latest compiler instead of an older release).
375375 # Therefore, keep the test disabled by default; it's easy to enable
376376 # temporarily on a branch for testing.
377- if : false
377+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
378378 needs : [linux-cross-windows, prepare]
379379 strategy :
380380 fail-fast : false
@@ -434,7 +434,7 @@ jobs:
434434 # This also forces testing the bundled python executables.
435435 test-openmp :
436436 # Only running these tests in scheduled builds.
437- if : (github.event_name == 'schedule') && (github.repository == 'mstorsjo/llvm-mingw')
437+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
438438 needs : [linux-cross-windows, prepare]
439439 strategy :
440440 fail-fast : false
@@ -498,7 +498,7 @@ jobs:
498498 # also forces testing the bundled python executables.
499499 test-compiler-rt :
500500 # Only running these tests in scheduled builds.
501- if : (github.event_name == 'schedule') && (github.repository == 'mstorsjo/llvm-mingw')
501+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
502502 needs : [linux-cross-windows, prepare]
503503 strategy :
504504 fail-fast : false
You can’t perform that action at this time.
0 commit comments