Skip to content

Commit

Permalink
ICC CI: Unbound Vars (setvars.sh) (ECP-WarpX#2663)
Browse files Browse the repository at this point in the history
Ignore:
```
/opt/intel/oneapi/compiler/latest/env/vars.sh: line 236: OCL_ICD_FILENAMES: unbound variable
```
  • Loading branch information
ax3l authored and lgiacome committed Dec 16, 2021
1 parent 9d70f59 commit 3eb2a0f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dependencies/icc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ sudo apt-get update
sudo apt-get install -y intel-oneapi-compiler-dpcpp-cpp-and-cpp-classic

# activate now via
set +e
set +eu
source /opt/intel/oneapi/setvars.sh
set -e
set -eu

# cmake-easyinstall
sudo curl -L -o /usr/local/bin/cmake-easyinstall https://git.io/JvLxY
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/intel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
.github/workflows/dependencies/icc.sh
- name: build WarpX
run: |
set +e
set +eu
source /opt/intel/oneapi/setvars.sh
set -e
set -eu
export CXX=$(which icpc)
export CC=$(which icc)
Expand Down

0 comments on commit 3eb2a0f

Please sign in to comment.