Skip to content

Commit

Permalink
Merge GH #3783 Fix Clang CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
randombit committed Oct 29, 2023
2 parents d547d20 + a5fe6f1 commit 8c86135
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/scripts/ci/setup_gh_actions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,14 @@ ARCH="$2"
SCRIPT_LOCATION=$(cd "$(dirname "$0")"; pwd)

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

if [ "$TARGET" = "valgrind" ] || [ "$TARGET" = "valgrind-full" ]; then
Expand Down

0 comments on commit 8c86135

Please sign in to comment.