Skip to content

Commit fd02e97

Browse files
committed
fix intel installation
1 parent 95fbeb9 commit fd02e97

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131
- uses: actions/checkout@v2
132132

133133
- name: Install Intel compiler
134-
if: ${{ matrix.compiler == 'ICX' }}
134+
if: ${{ matrix.compiler == 'ICX' || matrix.compiler == 'ICPX' }}
135135
run: |
136136
# see https://software.intel.com/content/www/us/en/develop/articles/installing-intel-oneapi-toolkits-via-apt.html#pkgtable
137137
cd /tmp
@@ -166,7 +166,7 @@ jobs:
166166
167167
- name: Running tests
168168
run: |
169-
if [ ${{ matrix.compiler }} = ICX ]; then
169+
if [ ${{ matrix.compiler }} = ICX ] || [ ${{ matrix.compiler }} = ICPX ]; then
170170
source /opt/intel/oneapi/setvars.sh
171171
fi
172172
export PYTHONPATH=${PYTHONPATH}:${GITHUB_WORKSPACE}/bin
@@ -177,7 +177,7 @@ jobs:
177177
178178
- name: Running MPI tests
179179
run: |
180-
if [ ${{ matrix.compiler }} = ICX ]; then
180+
if [ ${{ matrix.compiler }} = ICX ] || [ ${{ matrix.compiler }} = ICPX ]; then
181181
source /opt/intel/oneapi/setvars.sh
182182
fi
183183
export PYTHONPATH=${PYTHONPATH}:${GITHUB_WORKSPACE}/bin

0 commit comments

Comments
 (0)