@@ -494,7 +494,7 @@ jobs:
494494 # testing with the latest compiler instead of an older release).
495495 # Therefore, keep the test disabled by default; it's easy to enable
496496 # temporarily on a branch for testing.
497- if : false
497+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
498498 needs : [linux-cross-windows, prepare]
499499 strategy :
500500 fail-fast : false
@@ -556,8 +556,7 @@ jobs:
556556 # Run the OpenMP tests with the cross-built toolchains from above.
557557 # This also forces testing the bundled python executables.
558558 test-openmp :
559- # Only running these tests in scheduled builds.
560- if : (github.event_name == 'schedule') && (github.repository == 'mstorsjo/llvm-mingw')
559+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
561560 needs : [linux-cross-windows, prepare]
562561 strategy :
563562 fail-fast : false
@@ -623,8 +622,7 @@ jobs:
623622 # Run the compiler-rt tests with the cross-built toolchains from above. This
624623 # also forces testing the bundled python executables.
625624 test-compiler-rt :
626- # Only running these tests in scheduled builds.
627- if : (github.event_name == 'schedule') && (github.repository == 'mstorsjo/llvm-mingw')
625+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
628626 needs : [linux-cross-windows, prepare]
629627 strategy :
630628 fail-fast : false
@@ -750,7 +748,7 @@ jobs:
750748 # compiler itself, but that only show up at runtime. This is only done
751749 # for scheduled builds.
752750 test-ffmpeg :
753- if : (github.event_name == 'schedule') && (github.repository == 'mstorsjo/llvm-mingw')
751+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
754752 needs : [linux-cross-windows]
755753 runs-on : windows-latest
756754 defaults :
0 commit comments