Skip to content

Commit

Permalink
Try fixing CI after GHA Ubuntu 24.04 Update
Browse files Browse the repository at this point in the history
New GHA images seem to have dropped the preinstalled libc++ package. Let's manually install it during setup.
  • Loading branch information
NickGerleman authored Jan 21, 2025
1 parent 9591210 commit f379330
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/actions/setup-cpp/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f379330

Please sign in to comment.