Skip to content

Commit ffb8707

Browse files
committed
CI: Work around broken Clang+libstdc++ combination
To be removed once actions/runner-images#8659 gets fixed.
1 parent 0aebdcd commit ffb8707

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ jobs:
6161
if: startsWith(matrix.os, 'ubuntu')
6262
run: |
6363
COMMON_PKGS="libolm-dev ninja-build valgrind gnome-keyring"
64+
# Workaround for https://github.com/actions/runner-images/issues/8659
65+
sudo rm -f /etc/apt/sources.list.d/ubuntu-toolchain-r-ubuntu-test-jammy.list
66+
COMMON_PKGS="--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 $COMMON_PKGS"
67+
# End of workaround
6468
sudo apt-get -qq update
6569
sudo apt-get -qq install $COMMON_PKGS \
6670
${{ startsWith(matrix.qt-version, '5')

0 commit comments

Comments
 (0)