Skip to content

Commit

Permalink
[workflows] Fix lldb-tests and libclc-tests (llvm#80751)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tstellar authored Feb 6, 2024
1 parent 5a9af39 commit 792d928
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/libclc-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,4 @@ jobs:
name: Test libclc
uses: ./.github/workflows/llvm-project-tests.yml
with:
build_target: ''
projects: clang;libclc
1 change: 0 additions & 1 deletion .github/workflows/lldb-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,4 @@ jobs:
name: Build lldb
uses: ./.github/workflows/llvm-project-tests.yml
with:
build_target: ''
projects: clang;lldb
3 changes: 2 additions & 1 deletion .github/workflows/llvm-project-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ on:
workflow_call:
inputs:
build_target:
required: true
required: false
type: string
default: "all"

projects:
required: true
Expand Down

0 comments on commit 792d928

Please sign in to comment.