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:
374
374
# testing with the latest compiler instead of an older release).
375
375
# Therefore, keep the test disabled by default; it's easy to enable
376
376
# temporarily on a branch for testing.
377
- if : false
377
+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
378
378
needs : [linux-cross-windows, prepare]
379
379
strategy :
380
380
fail-fast : false
@@ -437,7 +437,7 @@ jobs:
437
437
# This also forces testing the bundled python executables.
438
438
test-openmp :
439
439
# 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')
441
441
needs : [linux-cross-windows, prepare]
442
442
strategy :
443
443
fail-fast : false
@@ -504,7 +504,7 @@ jobs:
504
504
# also forces testing the bundled python executables.
505
505
test-compiler-rt :
506
506
# 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')
508
508
needs : [linux-cross-windows, prepare]
509
509
strategy :
510
510
fail-fast : false
You can’t perform that action at this time.
0 commit comments