From f3793303f3c930f598d71013ce121bd17926d99f Mon Sep 17 00:00:00 2001 From: Nick Gerleman Date: Tue, 21 Jan 2025 11:44:49 -0800 Subject: [PATCH] Try fixing CI after GHA Ubuntu 24.04 Update New GHA images seem to have dropped the preinstalled libc++ package. Let's manually install it during setup. --- .github/actions/setup-cpp/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/setup-cpp/action.yml b/.github/actions/setup-cpp/action.yml index 4f618267..f3aece30 100644 --- a/.github/actions/setup-cpp/action.yml +++ b/.github/actions/setup-cpp/action.yml @@ -16,6 +16,7 @@ runs: if: ${{ inputs.toolchain == 'Clang' }} shell: bash run: | + sudo apt-get install -y libc++-dev libc++abi-dev echo "CC=/usr/bin/clang" >> $GITHUB_ENV echo "CXX=/usr/bin/clang++" >> $GITHUB_ENV echo "CXXFLAGS=-stdlib=libc++" >> $GITHUB_ENV