From 0a49b5e93a62657d60920df207e7bbc660b56814 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Mon, 2 Jun 2025 00:46:06 +0200 Subject: [PATCH] full-check.yml: Fix installation of GCC 15 and binutils >=2.43 With binutils <2.43 linking would fail with error: > /tmp/ccIZUmko.s: Assembler messages: > /tmp/ccIZUmko.s:8: Error: unknown pseudo-op: `.base64' Related: - GNU Binutils 2.43 Released https://lists.gnu.org/archive/html/info-gnu/2024-08/msg00001.html - gcc-15 (15-20250404-0ubuntu1) [universe] https://packages.ubuntu.com/plucky/gcc-15 --- .github/workflows/full-check.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/full-check.yml b/.github/workflows/full-check.yml index 77f9ad1..293b586 100644 --- a/.github/workflows/full-check.yml +++ b/.github/workflows/full-check.yml @@ -29,11 +29,8 @@ jobs: if: "${{ matrix.cc == 'gcc-15' }}" run: | set -x - # The repository is at home at https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test . # NOTE: plucky is 25.04 (not 24.04 LTS) - wget -O - 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xc8ec952e2a0e1fbdc5090f6a2c277a0a352154e5' | sudo apt-key add - - sudo add-apt-repository 'deb https://ppa.launchpadcontent.net/ubuntu-toolchain-r/test/ubuntu plucky main' - sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu/ plucky main' + sudo add-apt-repository 'deb http://archive.ubuntu.com/ubuntu/ plucky main universe' - name: gcc_15_install if: "${{ matrix.cc == 'gcc-15' }}" run: |