From 6322d2f102eb81305d54a55ab5f48c83efdd9726 Mon Sep 17 00:00:00 2001 From: Antoni Boucher Date: Thu, 16 Apr 2026 06:44:32 -0400 Subject: [PATCH] Attempt to fix the CI by installing clang-19 --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 35dc6da..2765ebd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -115,6 +115,9 @@ jobs: - if: matrix.backend == 'gcc' run: | sudo apt-get -y --no-install-recommends purge cpp gcc + sudo apt-get install clang-19 + sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-19 190 + curl --proto '=https' --tlsv1.2 -sSfLO https://github.com/rust-lang/gcc/releases/latest/download/gcc-15.deb sudo dpkg -i gcc-15.deb