[workflows] Fix lldb-tests and libclc-tests (#80751)

This was broken by d25022bb689b9bf48a24c0ae6c29c1d3c2f32823, 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
d25022bb689b9bf48a24c0ae6c29c1d3c2f32823.
This commit is contained in:
Tom Stellard 2024-02-05 16:44:11 -08:00 committed by GitHub
parent 5a9af39aab
commit 792d928e15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2 additions and 3 deletions

View File

@ -36,5 +36,4 @@ jobs:
name: Test libclc name: Test libclc
uses: ./.github/workflows/llvm-project-tests.yml uses: ./.github/workflows/llvm-project-tests.yml
with: with:
build_target: ''
projects: clang;libclc projects: clang;libclc

View File

@ -36,5 +36,4 @@ jobs:
name: Build lldb name: Build lldb
uses: ./.github/workflows/llvm-project-tests.yml uses: ./.github/workflows/llvm-project-tests.yml
with: with:
build_target: ''
projects: clang;lldb projects: clang;lldb

View File

@ -22,8 +22,9 @@ on:
workflow_call: workflow_call:
inputs: inputs:
build_target: build_target:
required: true required: false
type: string type: string
default: "all"
projects: projects:
required: true required: true