[PATCH liburing 2/4] ci: Fix the wrong `cc_pkg` comparison
Ammar Faizi <[email protected]> Sat, 25 Jul 2026 05:59:03 +0700
| Newsgroups | org.kernel.vger.io-uring |
|---|---|
| Message-ID | <[email protected]> |
Commit 7a65e5a4f294 ("github: Build all newly pushed commits") nested
the `cc_pkg` variable into `build_args`, but the if statement is still
using the old matrix variable. Fix it; the correct variable is
`matrix.build_args.cc_pkg`.
Fixes: 7a65e5a4f294 ("github: Build all newly pushed commits")
Cc: Christian Mazakas <[email protected]>
Signed-off-by: Ammar Faizi <[email protected]>
---
.github/workflows/ci.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 355541167424..842cdead6fef 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -204,7 +204,7 @@ jobs:
- name: Install Compilers
run: |
- if [[ "${{matrix.cc_pkg}}" == "clang" ]]; then \
+ if [[ "${{matrix.build_args.cc_pkg}}" == "clang" ]]; then \
wget https://apt.llvm.org/llvm.sh -O /tmp/llvm.sh; \
sudo bash /tmp/llvm.sh 22; \
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-22 400; \
--
Ammar Faizi