Skip to content

Commit

Permalink
Merge pull request #154 from sehlen-bsi/fix/ubuntu_clang_ci
Browse files Browse the repository at this point in the history
Add hack to work around GH Actions bug breaking the Clang build
  • Loading branch information
reneme authored Oct 31, 2023
2 parents 7793d0c + 40f8263 commit 9d7266d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/actions/setup-build-agent/setup_gh_actions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@ setup_softhsm_macos() {
}

if type -p "apt-get"; then
sudo apt-get -qq update
# Hack to deal with https://github.com/actions/runner-images/issues/8659
sudo rm -f /etc/apt/sources.list.d/ubuntu-toolchain-r-ubuntu-test-jammy.list
sudo apt-get update
sudo apt-get install -y --allow-downgrades libc6=2.35-0ubuntu3.4 libc6-dev=2.35-0ubuntu3.4 libstdc++6=12.3.0-1ubuntu1~22.04 libgcc-s1=12.3.0-1ubuntu1~22.04

# Normal workflow follows
#sudo apt-get -qq update
sudo apt-get -qq install ccache

setup_softhsm_and_tpm_linux
Expand Down

0 comments on commit 9d7266d

Please sign in to comment.