From 198cce29ba7c6f9c615a163d5a2089257fce4c12 Mon Sep 17 00:00:00 2001 From: Geza Lore Date: Sun, 5 Jul 2026 14:26:30 +0100 Subject: [PATCH] CI: Restore relocation testing (#7870) PR #7776 removed Ubuntu 22.04 clang from the test matrix, which was the only one testing the relocation of an installation. Add back under Ubuntu 24.04 clang. --- .github/workflows/build-test.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 7817a3bf6..e6737f17e 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -263,14 +263,14 @@ jobs: fail-fast: false matrix: include: - # Ubuntu 24.04 clang - - {os: ubuntu-24.04, cc: clang, reloc: 0, suite: dist-vlt-0} - - {os: ubuntu-24.04, cc: clang, reloc: 0, suite: dist-vlt-1} - - {os: ubuntu-24.04, cc: clang, reloc: 0, suite: dist-vlt-2} - - {os: ubuntu-24.04, cc: clang, reloc: 0, suite: dist-vlt-3} - - {os: ubuntu-24.04, cc: clang, reloc: 0, suite: vltmt-0} - - {os: ubuntu-24.04, cc: clang, reloc: 0, suite: vltmt-1} - - {os: ubuntu-24.04, cc: clang, reloc: 0, suite: vltmt-2} + # Ubuntu 24.04 clang, also test relocation + - {os: ubuntu-24.04, cc: clang, reloc: 1, suite: dist-vlt-0} + - {os: ubuntu-24.04, cc: clang, reloc: 1, suite: dist-vlt-1} + - {os: ubuntu-24.04, cc: clang, reloc: 1, suite: dist-vlt-2} + - {os: ubuntu-24.04, cc: clang, reloc: 1, suite: dist-vlt-3} + - {os: ubuntu-24.04, cc: clang, reloc: 1, suite: vltmt-0} + - {os: ubuntu-24.04, cc: clang, reloc: 1, suite: vltmt-1} + - {os: ubuntu-24.04, cc: clang, reloc: 1, suite: vltmt-2} test-2204-gcc: name: Test | ${{ matrix.os }} | ${{ matrix.cc }} | ${{ matrix.reloc && 'reloc | ' || '' }} ${{ matrix.suite }}