Skip to content

Commit 0ecd76c

Browse files
Upgrade Musllinux runner (#1795)
* Upgrade Musllinux to Ubuntu 24.04 ?? * Explicitly initialize a member * Revert "Explicitly initialize a member" This reverts commit 6ce4c8a. * Don't error on maybe-uninitialized stdlib bug
1 parent 21adf5a commit 0ecd76c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -309,10 +309,10 @@ jobs:
309309
done
310310
311311
musllinux_py10:
312-
runs-on: ubuntu-22.04
312+
runs-on: ubuntu-24.04
313313
if: github.event.pull_request.draft == false
314314
container:
315-
image: quay.io/pypa/musllinux_1_1_x86_64
315+
image: quay.io/pypa/musllinux_1_2_x86_64
316316
steps:
317317
- uses: actions/checkout@v4
318318
- name: Install
@@ -321,7 +321,7 @@ jobs:
321321
apk add hdf5-dev
322322
python3.10 -m pip install numpy h5py
323323
- name: Build
324-
env: {CXXFLAGS: -Werror}
324+
env: {CXXFLAGS: "-Werror -Wno-error=maybe-uninitialized"}
325325
run: |
326326
share/openPMD/download_samples.sh build
327327
cmake -S . -B build \

0 commit comments

Comments
 (0)