From 9585270e9107f37edcc6963bec6f2a44552336af Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Wed, 7 Jan 2026 21:23:14 +0100 Subject: [PATCH 01/17] GitHub CI: mpiexec -n 4 --oversubscribe --- .github/actions/alf_test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/alf_test/action.yml b/.github/actions/alf_test/action.yml index ef675919..01471be7 100644 --- a/.github/actions/alf_test/action.yml +++ b/.github/actions/alf_test/action.yml @@ -42,7 +42,7 @@ runs: if echo "$MODE" | grep -iq -e "serial" -e "noMPI"; then "$ALF_DIR/Prog/ALF.out" else - mpiexec -n 2 "$ALF_DIR/Prog/ALF.out" # only 2 cores available in githubs runners + mpiexec -n 4 --oversubscribe "$ALF_DIR/Prog/ALF.out" fi if echo "$MODE" | grep -iq -e "TEMPERING" -e "PARALLEL_PARAMS"; then cd Temp_0; fi if echo "$CONFIG_ARGS" | grep -iq "HDF5"; then From e0aa5b3e47da5440eabb9d11e2e9b17c1522a3c0 Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Wed, 7 Jan 2026 21:25:08 +0100 Subject: [PATCH 02/17] test --- .github/actions/alf_test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/alf_test/action.yml b/.github/actions/alf_test/action.yml index 01471be7..d63f8e77 100644 --- a/.github/actions/alf_test/action.yml +++ b/.github/actions/alf_test/action.yml @@ -42,7 +42,7 @@ runs: if echo "$MODE" | grep -iq -e "serial" -e "noMPI"; then "$ALF_DIR/Prog/ALF.out" else - mpiexec -n 4 --oversubscribe "$ALF_DIR/Prog/ALF.out" + mpiexec -n 4 --oversubscribe "$ALF_DIR/Prog/ALF.out" # test fi if echo "$MODE" | grep -iq -e "TEMPERING" -e "PARALLEL_PARAMS"; then cd Temp_0; fi if echo "$CONFIG_ARGS" | grep -iq "HDF5"; then From 02ea0cb2c4e392d17681b1dd76b12d274d60e1d7 Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Wed, 7 Jan 2026 21:35:12 +0100 Subject: [PATCH 03/17] Enable mpi oversubscribe via environment variable. --- .github/actions/alf_test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/alf_test/action.yml b/.github/actions/alf_test/action.yml index d63f8e77..4dc68ad2 100644 --- a/.github/actions/alf_test/action.yml +++ b/.github/actions/alf_test/action.yml @@ -42,7 +42,7 @@ runs: if echo "$MODE" | grep -iq -e "serial" -e "noMPI"; then "$ALF_DIR/Prog/ALF.out" else - mpiexec -n 4 --oversubscribe "$ALF_DIR/Prog/ALF.out" # test + OMPI_MCA_rmaps_base_oversubscribe=true mpiexec -n 4 "$ALF_DIR/Prog/ALF.out" fi if echo "$MODE" | grep -iq -e "TEMPERING" -e "PARALLEL_PARAMS"; then cd Temp_0; fi if echo "$CONFIG_ARGS" | grep -iq "HDF5"; then From fe298331d935bffa5cae1413906688a14c115b04 Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Thu, 8 Jan 2026 14:08:44 +0100 Subject: [PATCH 04/17] test --- .github/actions/alf_test/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/alf_test/action.yml b/.github/actions/alf_test/action.yml index 4dc68ad2..f6e39683 100644 --- a/.github/actions/alf_test/action.yml +++ b/.github/actions/alf_test/action.yml @@ -29,6 +29,7 @@ runs: OMPI_ALLOW_RUN_AS_ROOT: 1 # needed for mpi runnig as root, needed by github runner OMPI_ALLOW_RUN_AS_ROOT_CONFIRM: 1 run: | + nproc . ./configure.sh $ARGS echo $ALF_FC $ALF_FC --version From 89db50fcb13a6468001a54f81f500f8d963bf57d Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Thu, 8 Jan 2026 14:13:15 +0100 Subject: [PATCH 05/17] Do not run containers as root --- .github/actions/alf_test/action.yml | 2 -- .github/workflows/ci.yml | 6 ------ 2 files changed, 8 deletions(-) diff --git a/.github/actions/alf_test/action.yml b/.github/actions/alf_test/action.yml index f6e39683..973352e4 100644 --- a/.github/actions/alf_test/action.yml +++ b/.github/actions/alf_test/action.yml @@ -26,8 +26,6 @@ runs: shell: bash env: ARGS: ${{ inputs.args }} - OMPI_ALLOW_RUN_AS_ROOT: 1 # needed for mpi runnig as root, needed by github runner - OMPI_ALLOW_RUN_AS_ROOT_CONFIRM: 1 run: | nproc . ./configure.sh $ARGS diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 62c5cd93..7f565ce2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -128,7 +128,6 @@ jobs: config: ["", "HDF5"] container: image: ghcr.io/alf-qmc/alf-container/alf-requirements/${{ matrix.image_minor }} - options: --user 0 steps: - uses: actions/checkout@v4 - uses: ./.github/actions/alf_test @@ -145,7 +144,6 @@ jobs: config: ["", "HDF5"] container: image: ghcr.io/alf-qmc/alf-container/alf-requirements/bullseye-openblas - options: --user 0 steps: - uses: actions/checkout@v4 - uses: ./.github/actions/alf_test @@ -163,7 +161,6 @@ jobs: config: ["", "HDF5"] container: image: ghcr.io/alf-qmc/alf-container/alf-requirements/bullseye-pgi-21-03 - options: --user 0 steps: - uses: actions/checkout@v4 - uses: ./.github/actions/alf_test @@ -183,7 +180,6 @@ jobs: config: ["", "HDF5"] container: image: ghcr.io/alf-qmc/alf-container/alf-requirements/${{ matrix.image_minor }} - options: --user 0 steps: - uses: actions/checkout@v4 - uses: ./.github/actions/alf_test @@ -201,7 +197,6 @@ jobs: config: ["", "HDF5"] container: image: ghcr.io/alf-qmc/alf-container/alf-requirements/bookworm-intel - options: --user 0 steps: - uses: actions/checkout@v4 - uses: ./.github/actions/alf_test @@ -230,7 +225,6 @@ jobs: runs-on: ubuntu-latest container: image: ghcr.io/alf-qmc/alf-container/alf-requirements/bullseye - options: --user 0 steps: - uses: actions/checkout@v4 - name: Run Valgrind From 347033e81c9e73b90ba81e7bb52d0cb3d48bdc6a Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Thu, 8 Jan 2026 14:18:06 +0100 Subject: [PATCH 06/17] test --- .github/actions/alf_test/action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/actions/alf_test/action.yml b/.github/actions/alf_test/action.yml index 973352e4..1720d51b 100644 --- a/.github/actions/alf_test/action.yml +++ b/.github/actions/alf_test/action.yml @@ -27,7 +27,12 @@ runs: env: ARGS: ${{ inputs.args }} run: | - nproc + if [[ $(uname) == "Darwin" ]]; then + export NPROC=$(sysctl -n hw.ncpu) + else + export NPROC=$(nproc) + fi + echo "There are $NPROC processors available." . ./configure.sh $ARGS echo $ALF_FC $ALF_FC --version From 09b06243773c62d49d93827813ea307674613f70 Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Thu, 8 Jan 2026 16:48:11 +0100 Subject: [PATCH 07/17] test --- .github/actions/alf_test/action.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/actions/alf_test/action.yml b/.github/actions/alf_test/action.yml index 1720d51b..d72a3055 100644 --- a/.github/actions/alf_test/action.yml +++ b/.github/actions/alf_test/action.yml @@ -9,7 +9,6 @@ runs: using: "composite" steps: - name: macOS Toolchain install - if: runner.os == 'macOS' shell: bash run: | @@ -22,7 +21,6 @@ runs: ln -fs ${bindir}/g++-${gcc_version} /usr/local/bin/g++ - name: Build & Test - shell: bash env: ARGS: ${{ inputs.args }} @@ -54,6 +52,10 @@ runs: else "$ALF_DIR/Analysis/ana.out" * fi + + - name: Run unit tests + shell: bash + run: | mkdir -p "$ALF_DIR/testsuite/tests" cd "$ALF_DIR/testsuite/tests" if echo "$ALF_FC" | grep -q "mpiifort -fc=ifx"; then exit 0; fi From 925f4e480e9951f023d06b07f9a9dc700c550bd4 Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Thu, 8 Jan 2026 17:05:42 +0100 Subject: [PATCH 08/17] test --- .github/actions/alf_test/action.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/actions/alf_test/action.yml b/.github/actions/alf_test/action.yml index d72a3055..713ae079 100644 --- a/.github/actions/alf_test/action.yml +++ b/.github/actions/alf_test/action.yml @@ -20,17 +20,21 @@ runs: ln -fs ${bindir}/gcc-${gcc_version} /usr/local/bin/gcc ln -fs ${bindir}/g++-${gcc_version} /usr/local/bin/g++ - - name: Build & Test + - name: Get number of processors shell: bash - env: - ARGS: ${{ inputs.args }} run: | if [[ $(uname) == "Darwin" ]]; then - export NPROC=$(sysctl -n hw.ncpu) + NPROC=$(sysctl -n hw.ncpu) else - export NPROC=$(nproc) + NPROC=$(nproc) fi echo "There are $NPROC processors available." + + - name: Build & Test + shell: bash + env: + ARGS: ${{ inputs.args }} + run: | . ./configure.sh $ARGS echo $ALF_FC $ALF_FC --version @@ -55,7 +59,10 @@ runs: - name: Run unit tests shell: bash + env: + ARGS: ${{ inputs.args }} run: | + . ./configure.sh $ARGS mkdir -p "$ALF_DIR/testsuite/tests" cd "$ALF_DIR/testsuite/tests" if echo "$ALF_FC" | grep -q "mpiifort -fc=ifx"; then exit 0; fi From a7680484930457dc08bcdb0e8a5fa69ba83084e3 Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Thu, 8 Jan 2026 21:10:27 +0100 Subject: [PATCH 09/17] Mac runner: Use MPICH instead of Open-MPI --- .github/actions/alf_test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/alf_test/action.yml b/.github/actions/alf_test/action.yml index 713ae079..834b92e1 100644 --- a/.github/actions/alf_test/action.yml +++ b/.github/actions/alf_test/action.yml @@ -13,7 +13,7 @@ runs: shell: bash run: | brew update - brew install gcc cmake open-mpi + brew install gcc cmake mpich gcc_version=$(brew list --versions gcc | grep -o '[0-9]\+' | head -1) bindir=$(brew --prefix)/bin ln -fs ${bindir}/gfortran-${gcc_version} /usr/local/bin/gfortran From 666d8580de3d21dc081d506a938fa07732c64680 Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Thu, 8 Jan 2026 21:19:55 +0100 Subject: [PATCH 10/17] CI: OpenMPI: --use-hwthread-cpus --- .github/actions/alf_test/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/actions/alf_test/action.yml b/.github/actions/alf_test/action.yml index 834b92e1..eba47aa2 100644 --- a/.github/actions/alf_test/action.yml +++ b/.github/actions/alf_test/action.yml @@ -48,7 +48,9 @@ runs: if echo "$MODE" | grep -iq -e "serial" -e "noMPI"; then "$ALF_DIR/Prog/ALF.out" else - OMPI_MCA_rmaps_base_oversubscribe=true mpiexec -n 4 "$ALF_DIR/Prog/ALF.out" + MPI_OPTS="-n 4" + if mpiexec --version | grep -iq 'Open MPI'; then MPI_OPTS="$MPI_OPTS --use-hwthread-cpus"; fi + mpiexec $MPI_OPTS "$ALF_DIR/Prog/ALF.out" fi if echo "$MODE" | grep -iq -e "TEMPERING" -e "PARALLEL_PARAMS"; then cd Temp_0; fi if echo "$CONFIG_ARGS" | grep -iq "HDF5"; then From e6f0752210f13419569eab75e9019b9bb9de905b Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Thu, 8 Jan 2026 21:43:38 +0100 Subject: [PATCH 11/17] Simpify CI config --- .github/workflows/ci.yml | 91 ++++++++-------------------------------- 1 file changed, 18 insertions(+), 73 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f565ce2..9d8ed50c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -116,92 +116,36 @@ jobs: # Linux tests # ====================== - test_linux_gnu: + test_linux: name: ${{ matrix.image_minor }} · ${{ matrix.mode }} · ${{ matrix.devel }} · ${{ matrix.config }} runs-on: ubuntu-latest strategy: fail-fast: false matrix: - image_minor: [bullseye, bookworm, trixie] + image_minor: + - [bullseye, GNU] + - [bookworm, GNU] + - [trixie, GNU] + - [tumbleweed, GNU] + - [bullseye-pgi-21-03, PGI] + - [bullseye-intel, INTEL] + - [bookworm-intel-2024.2, INTEL] + - [bookworm-intel, INTELLLVM] mode: [noMPI, MPI, TEMPERING, PARALLEL_PARAMS] devel: ["", "Devel"] config: ["", "HDF5"] + include: + - image_minor: [bullseye-openblas, GNU] + mode: [noMPI] + devel: ["", "Devel"] + config: ["", "HDF5"] container: - image: ghcr.io/alf-qmc/alf-container/alf-requirements/${{ matrix.image_minor }} + image: ghcr.io/alf-qmc/alf-container/alf-requirements/${{ matrix.image_minor[0] }} steps: - uses: actions/checkout@v4 - uses: ./.github/actions/alf_test with: - args: GNU ${{ matrix.mode }} ${{ matrix.devel }} ${{ matrix.config }} - - test_linux_gnu_openblas: - name: bullseye-openblas · ${{ matrix.devel }} · ${{ matrix.config }} - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - devel: ["", "Devel"] - config: ["", "HDF5"] - container: - image: ghcr.io/alf-qmc/alf-container/alf-requirements/bullseye-openblas - steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/alf_test - with: - args: GNU ${{ matrix.mode }} ${{ matrix.devel }} ${{ matrix.config }} - - test_linux_pgi: - name: bullseye-pgi-21-03 · ${{ matrix.mode }} · ${{ matrix.devel }} · ${{ matrix.config }} - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - mode: [noMPI, MPI, TEMPERING, PARALLEL_PARAMS] - devel: ["", "Devel"] - config: ["", "HDF5"] - container: - image: ghcr.io/alf-qmc/alf-container/alf-requirements/bullseye-pgi-21-03 - steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/alf_test - with: - with: - args: PGI ${{ matrix.mode }} ${{ matrix.devel }} ${{ matrix.config }} - - test_linux_intel: - name: ${{ matrix.image_minor }} · ${{ matrix.mode }} · ${{ matrix.devel }} · ${{ matrix.config }} - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - image_minor: [bullseye-intel, bookworm-intel-2024.2] - mode: [noMPI, MPI, TEMPERING, PARALLEL_PARAMS] - devel: ["", "Devel"] - config: ["", "HDF5"] - container: - image: ghcr.io/alf-qmc/alf-container/alf-requirements/${{ matrix.image_minor }} - steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/alf_test - with: - args: INTEL ${{ matrix.mode }} ${{ matrix.devel }} ${{ matrix.config }} - - test_linux_intelllvm: - name: bookworm-intel · ${{ matrix.mode }} · ${{ matrix.devel }} · ${{ matrix.config }} - runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - mode: [noMPI, MPI, TEMPERING, PARALLEL_PARAMS] - devel: ["", "Devel"] - config: ["", "HDF5"] - container: - image: ghcr.io/alf-qmc/alf-container/alf-requirements/bookworm-intel - steps: - - uses: actions/checkout@v4 - - uses: ./.github/actions/alf_test - with: - args: INTELLLVM ${{ matrix.mode }} ${{ matrix.devel }} ${{ matrix.config }} + args: ${{ matrix.image_minor[1] }} ${{ matrix.mode }} ${{ matrix.devel }} ${{ matrix.config }} test_macos: name: macOS · ${{ matrix.mode }} · ${{ matrix.devel }} @@ -211,6 +155,7 @@ jobs: matrix: mode: [noMPI, MPI, TEMPERING, PARALLEL_PARAMS] devel: ["", "Devel"] + config: [""] # TODO: Enable fast access to HDF5 on macOS runners steps: - uses: actions/checkout@v4 - uses: ./.github/actions/alf_test From c9850835b778693e366c4c6d164d9e5d598e5d1f Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Thu, 8 Jan 2026 21:58:07 +0100 Subject: [PATCH 12/17] CI: No tumbleweed for now --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9d8ed50c..76e08d02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -117,7 +117,7 @@ jobs: # ====================== test_linux: - name: ${{ matrix.image_minor }} · ${{ matrix.mode }} · ${{ matrix.devel }} · ${{ matrix.config }} + name: ${{ matrix.image_minor[0] }} · ${{ matrix.mode }} · ${{ matrix.devel }} · ${{ matrix.config }} runs-on: ubuntu-latest strategy: fail-fast: false @@ -126,7 +126,7 @@ jobs: - [bullseye, GNU] - [bookworm, GNU] - [trixie, GNU] - - [tumbleweed, GNU] + # - [tumbleweed, GNU] - [bullseye-pgi-21-03, PGI] - [bullseye-intel, INTEL] - [bookworm-intel-2024.2, INTEL] From 32b4ee169b2af175007b4916ab494f95faf695de Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Thu, 8 Jan 2026 22:15:43 +0100 Subject: [PATCH 13/17] CI: OpenMPI: --use-hwthread-cpus, catch more --- .github/actions/alf_test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/alf_test/action.yml b/.github/actions/alf_test/action.yml index eba47aa2..f3fca40c 100644 --- a/.github/actions/alf_test/action.yml +++ b/.github/actions/alf_test/action.yml @@ -49,7 +49,7 @@ runs: "$ALF_DIR/Prog/ALF.out" else MPI_OPTS="-n 4" - if mpiexec --version | grep -iq 'Open MPI'; then MPI_OPTS="$MPI_OPTS --use-hwthread-cpus"; fi + if mpiexec --version | grep -iq -e 'Open MPI' -e 'OpenRTE'; then MPI_OPTS="$MPI_OPTS --use-hwthread-cpus"; fi mpiexec $MPI_OPTS "$ALF_DIR/Prog/ALF.out" fi if echo "$MODE" | grep -iq -e "TEMPERING" -e "PARALLEL_PARAMS"; then cd Temp_0; fi From 6c374741688eaa697f53af7c733e3a0e0f4c2243 Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Thu, 8 Jan 2026 22:26:41 +0100 Subject: [PATCH 14/17] CI: Handle MacOS warnings --- .github/actions/alf_test/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/alf_test/action.yml b/.github/actions/alf_test/action.yml index f3fca40c..b685f592 100644 --- a/.github/actions/alf_test/action.yml +++ b/.github/actions/alf_test/action.yml @@ -13,7 +13,7 @@ runs: shell: bash run: | brew update - brew install gcc cmake mpich + brew install mpich gcc_version=$(brew list --versions gcc | grep -o '[0-9]\+' | head -1) bindir=$(brew --prefix)/bin ln -fs ${bindir}/gfortran-${gcc_version} /usr/local/bin/gfortran From 60814f60673c52f036b7f707bdf6e38190a73cd6 Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Fri, 9 Jan 2026 00:45:02 +0100 Subject: [PATCH 15/17] CI: Add tumbleweed and PGI images --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 76e08d02..d7bf83a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,19 +126,16 @@ jobs: - [bullseye, GNU] - [bookworm, GNU] - [trixie, GNU] + - [bullseye-openblas, GNU] # - [tumbleweed, GNU] - [bullseye-pgi-21-03, PGI] + - [bookworm-pgi-24-09, PGI] - [bullseye-intel, INTEL] - [bookworm-intel-2024.2, INTEL] - [bookworm-intel, INTELLLVM] mode: [noMPI, MPI, TEMPERING, PARALLEL_PARAMS] devel: ["", "Devel"] config: ["", "HDF5"] - include: - - image_minor: [bullseye-openblas, GNU] - mode: [noMPI] - devel: ["", "Devel"] - config: ["", "HDF5"] container: image: ghcr.io/alf-qmc/alf-container/alf-requirements/${{ matrix.image_minor[0] }} steps: @@ -175,7 +172,6 @@ jobs: - name: Run Valgrind shell: bash run: | - apt-get update && apt-get install -y valgrind . ./configure.sh GNU devel serial gfortran -v make lib From 57ed632690db352704365f99cd4cee901af8ee79 Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Fri, 9 Jan 2026 00:45:46 +0100 Subject: [PATCH 16/17] CI: Add tumbleweed --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d7bf83a5..1fa808d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -127,7 +127,7 @@ jobs: - [bookworm, GNU] - [trixie, GNU] - [bullseye-openblas, GNU] - # - [tumbleweed, GNU] + - [tumbleweed, GNU] - [bullseye-pgi-21-03, PGI] - [bookworm-pgi-24-09, PGI] - [bullseye-intel, INTEL] From 9ab3ec7aeedad2f37d8abf74fc327663b2a9a465 Mon Sep 17 00:00:00 2001 From: Jonas Schwab Date: Fri, 9 Jan 2026 01:31:02 +0100 Subject: [PATCH 17/17] CI: No Tumbleweed --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1fa808d9..d7bf83a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -127,7 +127,7 @@ jobs: - [bookworm, GNU] - [trixie, GNU] - [bullseye-openblas, GNU] - - [tumbleweed, GNU] + # - [tumbleweed, GNU] - [bullseye-pgi-21-03, PGI] - [bookworm-pgi-24-09, PGI] - [bullseye-intel, INTEL]