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
@@ -437,7 +437,7 @@ jobs:
437437 # This also forces testing the bundled python executables.
438438 test-openmp :
439439 # Only running these tests in scheduled builds.
440- if : (github.event_name == 'schedule') && (github.repository == 'mstorsjo/llvm-mingw')
440+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
441441 needs : [linux-cross-windows, prepare]
442442 strategy :
443443 fail-fast : false
@@ -504,7 +504,7 @@ jobs:
504504 # also forces testing the bundled python executables.
505505 test-compiler-rt :
506506 # Only running these tests in scheduled builds.
507- if : (github.event_name == 'schedule') && (github.repository == 'mstorsjo/llvm-mingw')
507+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
508508 needs : [linux-cross-windows, prepare]
509509 strategy :
510510 fail-fast : false
You can’t perform that action at this time.
0 commit comments