Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions .github/workflows/run_test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,15 +53,6 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Add repository "ubuntu-toolchain-r" for GCC 16
if: "${{ matrix.gcc == '16' }}"
run: |
set -x
# The repository is at home at https://launchpad.net/~ubuntu-toolchain-r/+archive/ubuntu/test .
# NOTE: resolute is future 26.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 resolute main'

- name: Install dependencies
run: |-
ubuntu_packages=(
Expand Down Expand Up @@ -93,6 +84,13 @@ jobs:

sudo perl -MCPAN -e 'install(Memory::Process)' # no package in Ubuntu

- name: Add repository "resolute" for GCC 16
if: "${{ matrix.gcc == '16' }}"
run: |
set -x
# NOTE: resolute is future 26.04 (not 24.04 LTS)
sudo add-apt-repository 'deb https://archive.ubuntu.com/ubuntu/ resolute main universe'

- name: "Make GCC ${{ matrix.gcc }} systemwide default"
run: |-
set -x -o pipefail
Expand Down