File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments