File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed
Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change 55 branches : [master]
66
77jobs :
8- generate-coverage :
9- name : Generate coverage and push to Coveralls.io
8+ build-with-clang :
9+ name : Build project with IntelLLVM clang compiler
1010 runs-on : ubuntu-latest
1111
1212 env :
1313 ONEAPI_ROOT : /opt/intel/oneapi
1414
1515 steps :
1616 - name : Cancel Previous Runs
17- uses : styfle/cancel-workflow-action@0.11.0
17+ uses : styfle/cancel-workflow-action@0.12.1
1818 with :
1919 access_token : ${{ github.token }}
2020
5757 run : |
5858 source /opt/intel/oneapi/setvars.sh
5959 echo $CMPLR_ROOT
60- export CC=$CMPLR_ROOT/bin/compiler/clang
61- export CXX=$CMPLR_ROOT/bin/compiler/clang++
62- export CFLAGS="${CFLAGS} -fno-fast-math"
63- echo "CC = ${CC} CXX=${CXX}"
64- ls -l ${CC} ${CXX}
60+ export CC=$CMPLR_ROOT/bin/icx
61+ export CXX=$CMPLR_ROOT/bin/icpx
62+ export CFLAGS="${CFLAGS} -fno-fast-math -O2"
6563 python setup.py develop
6664
6765 - name : Run mkl_random tests
You can’t perform that action at this time.
0 commit comments