Skip to content

Commit 85ee351

Browse files
authored
[CI] Skip libcxx in non-llvm repo (#73282)
The new libcxx workflow are run and failing in non llvm repo. Skip it similar to other workflow.
1 parent 820b358 commit 85ee351

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/libcxx-build-and-test.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ env:
4343

4444
jobs:
4545
stage1:
46+
if: github.repository_owner == 'llvm'
4647
runs-on:
4748
group: libcxx-runners-8
4849
continue-on-error: false
@@ -81,6 +82,7 @@ jobs:
8182
**/CMakeOutput.log
8283
**/crash_diagnostics/*
8384
stage2:
85+
if: github.repository_owner == 'llvm'
8486
runs-on:
8587
group: libcxx-runners-8
8688
needs: [ stage1 ]
@@ -130,6 +132,7 @@ jobs:
130132
**/CMakeOutput.log
131133
**/crash_diagnostics/*
132134
stage3:
135+
if: github.repository_owner == 'llvm'
133136
needs: [ stage1, stage2 ]
134137
continue-on-error: false
135138
strategy:

0 commit comments

Comments
 (0)