This is an automated email from the ASF dual-hosted git repository. martinzink pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
commit 1d764d7a76e1fd0c6d39527d7fbf7d1d86ab236a Author: Gabor Gyimesi <[email protected]> AuthorDate: Tue Mar 10 13:18:34 2026 +0100 MINIFICPP-2744 Fix ubuntu_22_04_clang_arm CI job The github actions ubuntu image uses a different llvm repository which overrides the libc++ version needed for the clang-20 compilation. Pin the libc++ version on the runner to avoid the version conflict. Closes #2130 Signed-off-by: Martin Zink <[email protected]> --- .github/workflows/ci.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3be9dd089..ca811cbfa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -280,8 +280,6 @@ jobs: - id: install_deps run: | wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add - - echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy main" | sudo tee -a /etc/apt/sources.list - echo "deb-src http://apt.llvm.org/jammy/ llvm-toolchain-jammy main" | sudo tee -a /etc/apt/sources.list echo "deb http://apt.llvm.org/jammy/ llvm-toolchain-jammy-20 main" | sudo tee -a /etc/apt/sources.list echo "deb-src http://apt.llvm.org/jammy/ llvm-toolchain-jammy-20 main" | sudo tee -a /etc/apt/sources.list sudo apt update
