Skip to content

Commit 07b6587

Browse files
committed
WIP: github: Run test-libcxx, test-compiler-rt and test-openmp on push
1 parent e20f0e3 commit 07b6587

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
@@ -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

0 commit comments

Comments
 (0)