diff --git a/.github/workflows/linux_build_qt.yml b/.github/workflows/linux_build_qt.yml index cece5a06e6..c67bc0b476 100644 --- a/.github/workflows/linux_build_qt.yml +++ b/.github/workflows/linux_build_qt.yml @@ -51,6 +51,14 @@ jobs: CCACHE_MAXSIZE: 100M steps: + # Work around https://github.com/actions/runner-images/issues/8659 + - name: Remove GCC 13 from runner image + shell: bash + run: | + 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 + - name: Checkout Repository uses: actions/checkout@v4 with: