Skip to content

Commit 75c0649

Browse files
committed
WIP: github: Run test-libcxx, test-compiler-rt and test-openmp on push
1 parent 14a7f1d commit 75c0649

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)