Skip to content

Commit 2651452

Browse files
committed
run two intel versions
1 parent a71131c commit 2651452

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/meta.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ jobs:
3333
fail-fast: false
3434
matrix:
3535
include:
36-
- os: ubuntu-latest
37-
mpi: intel
3836
- os: ubuntu-latest
3937
mpi: openmpi
4038
- os: ubuntu-latest
@@ -43,6 +41,12 @@ jobs:
4341
mpi: openmpi
4442
- os: macos-13
4543
mpi: mpich
44+
- os: ubuntu-latest
45+
mpi: intel
46+
intel_version: 2024.1.0
47+
- os: ubuntu-latest
48+
mpi: intel
49+
intel_version: 2025.0
4650

4751
steps:
4852
- name: Checkout code
@@ -91,13 +95,18 @@ jobs:
9195
libnetcdf-dev libnetcdff-dev libopenblas-dev
9296
9397
# Intel
94-
9598
- name: Setup Intel Environment
9699
if: contains(matrix.mpi, 'intel')
97100
uses: ./.github/actions/setup-intel
98101
with:
99102
os: ${{ matrix.os }}
103+
version: ${{ matrix.intel_version }}
100104

105+
- name: Log Intel oneAPI version
106+
if: contains(matrix.mpi, 'intel')
107+
shell: bash
108+
run: echo "✅ Intel oneAPI version: ${{ matrix.intel_version }}"
109+
101110
- name: (Ubuntu) Build and Install HDF5 from source
102111
if: contains(matrix.os, 'ubuntu') && contains(matrix.mpi, 'intel')
103112
# Needs checkout if source code isn't available, adjust if needed

0 commit comments

Comments
 (0)