Skip to content

Commit f4737d1

Browse files
committed
[workflows] Fix lldb-tests and libclc-tests (llvm#80751)
This was broken by d25022b, which caused the workflow to pass an empty string to ninja as the target. The 'all' target is probably not the right target for these tests, but this is what the behavior was before d25022b. (cherry picked from commit 792d928)
1 parent 5114167 commit f4737d1

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/libclc-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,4 @@ jobs:
3636
name: Test libclc
3737
uses: ./.github/workflows/llvm-project-tests.yml
3838
with:
39-
build_target: ''
4039
projects: clang;libclc

.github/workflows/lldb-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,4 @@ jobs:
3636
name: Build lldb
3737
uses: ./.github/workflows/llvm-project-tests.yml
3838
with:
39-
build_target: ''
4039
projects: clang;lldb

.github/workflows/llvm-project-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ on:
2222
workflow_call:
2323
inputs:
2424
build_target:
25-
required: true
25+
required: false
2626
type: string
27+
default: "all"
2728

2829
projects:
2930
required: true

0 commit comments

Comments
 (0)