Skip to content

Commit

Permalink
[CI] Disable Fortran for OneAPI runners
Browse files Browse the repository at this point in the history
Unit tests fail for optimized LAPACK libraries (see #1393)
  • Loading branch information
ischoegl authored and speth committed Sep 25, 2022
1 parent 51627cd commit 0cd37f0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/main.yml
Expand Up @@ -541,7 +541,8 @@ jobs:
source /opt/intel/oneapi/setvars.sh
printenv >> $GITHUB_ENV
- name: Build Cantera
run: python3 `which scons` build env_vars=all CC=icx CXX=icpx FORTRAN=ifx -j2 debug=n --debug=time
run: python3 `which scons` build env_vars=all CC=icx CXX=icpx -j2 debug=n
--debug=time f90_interface=n # FORTRAN=ifx
- name: Test Cantera
run:
python3 `which scons` test show_long_tests=yes verbose_tests=yes --debug=time
Expand Down Expand Up @@ -586,7 +587,8 @@ jobs:
source /opt/intel/oneapi/setvars.sh
printenv >> $GITHUB_ENV
- name: Build Cantera
run: python3 `which scons` build env_vars=all CC=icc CXX=icpc FORTRAN=ifort -j2 debug=n --debug=time
run: python3 `which scons` build env_vars=all CC=icc CXX=icpc -j2 debug=n
--debug=time f90_interface=n # FORTRAN=ifort
- name: Test Cantera
run:
python3 `which scons` test show_long_tests=yes verbose_tests=yes --debug=time
Expand Down

0 comments on commit 0cd37f0

Please sign in to comment.