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 Signed-off-by: Ammar Faizi --- .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