Skip to content

Commit

Permalink
Fix workflow to avoid errors
Browse files Browse the repository at this point in the history
  • Loading branch information
oleksandr-pavlyk committed Sep 14, 2023
1 parent 0479579 commit 4049cfd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build-with-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@ jobs:
shell: bash -l {0}
run: |
source /opt/intel/oneapi/setvars.sh
export CC=$(dirname $(which icx))/../bin-llvm/clang
export CCXX=$(dirname $(which icx))/../bin-llvm/clang++
echo $CMPLR_ROOT
export CC=$CMPLR_ROOT/bin-llvm/clang
export CXX=$CMPLR_ROOT/bin-llvm/clang++
echo "CC = ${CC} CXX=${CXX}"
python setup.py develop
- name: Run mkl_random tests
Expand Down

0 comments on commit 4049cfd

Please sign in to comment.