From aac7a9992c4dcd97fc8d3166e0020fac3ed89a43 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sun, 7 Jul 2024 14:00:15 +1000 Subject: [PATCH] CI/AppImage: Drop gcc13 workaround Been fixed upstream for some time now. --- .github/workflows/rolling-release.yml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/rolling-release.yml b/.github/workflows/rolling-release.yml index 9fa66390f..70f0782b6 100644 --- a/.github/workflows/rolling-release.yml +++ b/.github/workflows/rolling-release.yml @@ -198,14 +198,6 @@ jobs: runs-on: ubuntu-22.04 timeout-minutes: 120 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-0ubuntu*' 'libc6-dev=2.35-0ubuntu*' libstdc++6=12.3.0-1ubuntu1~22.04 libgcc-s1=12.3.0-1ubuntu1~22.04 - - uses: actions/checkout@v4.1.6 with: fetch-depth: 0