Skip to content

Commit 6bc0811

Browse files
authored
Update test-libcxx.yml
1 parent 41080e3 commit 6bc0811

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/test-libcxx.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ name: Run libcxx/libcxxabi/libunwind tests
22
on:
33
workflow_dispatch:
44
inputs:
5+
llvm_version:
6+
description: 'LLVM version'
7+
type: string
58
commit:
69
description: 'Commit to extract from'
710
type: string
@@ -17,18 +20,18 @@ on:
1720
options:
1821
- push
1922
- schedule
23+
- workflow_dispatch
2024

2125
jobs:
2226
prepare:
2327
runs-on: ubuntu-latest
2428
outputs:
25-
LLVM_VERSION: ${{steps.get-parameters.outputs.LLVM_VERSION}}
29+
LLVM_VERSION: ${{inputs.llvm_version || steps.get-parameters.outputs.LLVM_VERSION}}
2630
steps:
2731
- name: Download build parameters
2832
uses: dawidd6/action-download-artifact@v6
2933
with:
3034
workflow: build.yml
31-
workflow_conclusion: success
3235
commit: ${{inputs.commit}}
3336
branch: ${{inputs.branch}}
3437
event: ${{inputs.pipeline_type}}
@@ -58,7 +61,6 @@ jobs:
5861
uses: dawidd6/action-download-artifact@v6
5962
with:
6063
workflow: build.yml
61-
workflow_conclusion: success
6264
commit: ${{inputs.commit}}
6365
branch: ${{inputs.branch}}
6466
event: ${{inputs.pipeline_type}}

0 commit comments

Comments
 (0)