Skip to content

Commit

Permalink
Update CI names
Browse files Browse the repository at this point in the history
The job names show up in branch protection rules, so
make these a little more descriptive.
  • Loading branch information
stephenneuendorffer committed Jun 5, 2024
1 parent 7af6969 commit 60f09ed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/amd-aie-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ concurrency:
jobs:
check_all:
if: github.repository_owner == 'Xilinx'
name: Test llvm,clang
name: Test AIE llvm,clang,lld
uses: ./.github/workflows/llvm-project-tests.yml
with:
build_target: check-llvm-aie check-clang-aie check-lld-aie
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/amd-upstream-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,23 @@ concurrency:
jobs:
check_all:
if: github.repository_owner == 'Xilinx'
name: Test llvm,clang
name: Test upstream llvm,clang
uses: ./.github/workflows/llvm-project-tests.yml
with:
build_target: check-all
projects: clang
cache-key: amd-upstream
extra_cmake_args: '-DLLVM_USE_LINKER=gold -DLLVM_TARGETS_TO_BUILD="X86;ARM;AArch64;AMDGPU"'
extra_cmake_args: '-DLLVM_USE_LINKER=gold -DLLVM_TARGETS_TO_BUILD="X86;ARM;AArch64;AMDGPU" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=""'
os_list: '["ubuntu-latest", "windows-2019"]'

check_lld:
if: github.repository_owner == 'Xilinx'
name: Test lld
name: Test upstream lld
uses: ./.github/workflows/llvm-project-tests.yml
with:
build_target: check-lld
projects: lld
cache-key: amd-upstream
extra_cmake_args: '-DLLVM_USE_LINKER=gold -DLLVM_TARGETS_TO_BUILD="X86;ARM;AArch64;AMDGPU" -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD=""'
os_list: '["ubuntu-latest", "windows-2019"]'

0 comments on commit 60f09ed

Please sign in to comment.