aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <tstellar@redhat.com>2025-11-07 16:48:58 -0800
committerGitHub <noreply@github.com>2025-11-07 16:48:58 -0800
commitbaf41d214349cfa5192ac2295b2ef9db6a68038a (patch)
tree477fa78f9c045e540ea2e88d87302c2eb4aa5bf4
parenta4b68b8ed5167b9233e8cb3964c15ae409a5b335 (diff)
downloadllvm-baf41d214349cfa5192ac2295b2ef9db6a68038a.zip
llvm-baf41d214349cfa5192ac2295b2ef9db6a68038a.tar.gz
llvm-baf41d214349cfa5192ac2295b2ef9db6a68038a.tar.bz2
[GitHub][CI] Fix tooling container names (#167052)
These were accidentally changed in e0822202a8ce5134289a2487876f453521997def.
-rw-r--r--.github/workflows/build-ci-container-tooling.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build-ci-container-tooling.yml b/.github/workflows/build-ci-container-tooling.yml
index 0bb8242..b94e373 100644
--- a/.github/workflows/build-ci-container-tooling.yml
+++ b/.github/workflows/build-ci-container-tooling.yml
@@ -32,9 +32,9 @@ jobs:
fail-fast: false
matrix:
include:
- - container-name: code-format
+ - container-name: format
test-command: 'cd $HOME && clang-format --version | grep version && git-clang-format -h | grep usage && black --version | grep black'
- - container-name: code-lint
+ - container-name: lint
test-command: 'cd $HOME && clang-tidy --version | grep version && clang-tidy-diff.py -h | grep usage'
steps:
- name: Checkout LLVM
@@ -52,7 +52,7 @@ jobs:
with:
container-name: ci-ubuntu-24.04-${{ matrix.container-name }}
dockerfile: .github/workflows/containers/github-action-ci-tooling/Dockerfile
- target: ci-container-${{ matrix.container-name }}
+ target: ci-container-code-${{ matrix.container-name }}
test-command: ${{ matrix.test-command }}
push-ci-container: