mirror of
https://github.com/intel/llvm.git
synced 2026-01-18 16:50:51 +08:00
[workflows] Fix lldb-tests and libclc-tests (#80751)
This was broken byd25022bb68, 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 befored25022bb68.
This commit is contained in:
1
.github/workflows/libclc-tests.yml
vendored
1
.github/workflows/libclc-tests.yml
vendored
@@ -36,5 +36,4 @@ jobs:
|
||||
name: Test libclc
|
||||
uses: ./.github/workflows/llvm-project-tests.yml
|
||||
with:
|
||||
build_target: ''
|
||||
projects: clang;libclc
|
||||
|
||||
1
.github/workflows/lldb-tests.yml
vendored
1
.github/workflows/lldb-tests.yml
vendored
@@ -36,5 +36,4 @@ jobs:
|
||||
name: Build lldb
|
||||
uses: ./.github/workflows/llvm-project-tests.yml
|
||||
with:
|
||||
build_target: ''
|
||||
projects: clang;lldb
|
||||
|
||||
3
.github/workflows/llvm-project-tests.yml
vendored
3
.github/workflows/llvm-project-tests.yml
vendored
@@ -22,8 +22,9 @@ on:
|
||||
workflow_call:
|
||||
inputs:
|
||||
build_target:
|
||||
required: true
|
||||
required: false
|
||||
type: string
|
||||
default: "all"
|
||||
|
||||
projects:
|
||||
required: true
|
||||
|
||||
Reference in New Issue
Block a user