Skip to content

Commit d6a9f33

Browse files
committed
hdf5 dependency
1 parent 2887700 commit d6a9f33

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
os: [ ubuntu-22.04, ubuntu-24.04 ]
16-
compiler: [ gcc-10, gcc-11, gcc-12, gcc-13, gcc-14,
16+
compiler: [ gcc-10, gcc-11, gcc-12, gcc-13, gcc-14, gcc-15,
1717
clang-14, clang-15, clang-16, clang-17, clang-18, clang-19, clang-20, icx ]
1818

1919
steps:
@@ -22,6 +22,8 @@ jobs:
2222
run: |
2323
skip_list=(
2424
"ubuntu-22.04:gcc-14"
25+
"ubuntu-22.04:gcc-15"
26+
"ubuntu-24.04:gcc-15"
2527
)
2628
2729
combo="${{ matrix.os }}:${{ matrix.compiler }}"
@@ -34,6 +36,9 @@ jobs:
3436
done
3537
echo "SKIP_COMPILE=false" >> "$GITHUB_ENV"
3638
39+
- name: Install system deps
40+
run: apt-get update && sudo apt-get install -y libhdf5-dev
41+
3742
- name: Checkout
3843
uses: actions/checkout@v4
3944
with:
@@ -43,7 +48,7 @@ jobs:
4348
if: env.SKIP_COMPILE == 'false'
4449
run: |
4550
env | grep '^GITHUB_' > github.env
46-
podman run --env-file github.env --rm --userns=keep-id -v /var/github:/var/github ci-${{ matrix.os }} bash -c '
51+
podman run --env-file github.env --rm -v /var/github:/var/github ci-${{ matrix.os }} bash -c '
4752
set -e
4853
echo "Running inside container: ${{ matrix.os }} + ${{ matrix.compiler }}"
4954
cd ${{ github.workspace }}

0 commit comments

Comments
 (0)