From 4523ae7ee1745424f81917bc39d9d3af848ad63f Mon Sep 17 00:00:00 2001 From: Martin Moene Date: Sat, 1 Jun 2024 15:41:23 +0200 Subject: [PATCH] Try GitHub Actions without Workaround for incompatible clang and libstc++ versions --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6549b95..a8255c9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,10 +58,10 @@ jobs: # for more info. # The basic idea here is to remove g++ 13 and its C++ standard library # and replace that with a compatible version of libstdc++. - - name: Workaround for GHA issue 8659 - run: | - sudo apt-get purge -y g++-13 gcc-13 libstdc++-13-dev - sudo apt-get install -y --allow-downgrades libstdc++-12-dev libstdc++6=12.* libgcc-s1=12.* + # - name: Workaround for GHA issue 8659 + # run: | + # sudo apt-get purge -y g++-13 gcc-13 libstdc++-13-dev + # sudo apt-get install -y --allow-downgrades libstdc++-12-dev libstdc++6=12.* libgcc-s1=12.* - name: Install Clang ${{ matrix.version }} run: sudo apt-get install -y clang-${{ matrix.version }}