Skip to content

Commit 6a007de

Browse files
committed
ci:build:linux: gcc 14
1 parent 60ce5ab commit 6a007de

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,19 @@ jobs:
8787
steps:
8888
- uses: actions/checkout@v4
8989

90-
- name: install HDF5
90+
- name: install HDF5 (macOS)
9191
if: runner.os == 'macOS'
9292
run: brew install hdf5
9393

94+
- name: install HDF5 (Linux)
95+
if: runner.os == 'Linux'
96+
run: sudo apt install --no-install-recommends libhdf5-dev
97+
98+
- name: GCC Linux
99+
if: runner.os == 'Linux'
100+
run: |
101+
echo "CC=gcc-14" >> $GITHUB_ENV
102+
94103
- run: cmake --workflow --preset default
95104

96105
- run: cmake --install build

0 commit comments

Comments
 (0)