Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/build_pip.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ jobs:

- name: Install Compiler and MKL
run: |
conda install mkl-devel tbb-devel dpcpp_linux-64
CHANNELS="-c https://software.repos.intel.com/python/conda -c conda-forge --override-channels"
conda install $CHANNELS mkl-devel tbb-devel dpcpp_linux-64
python -c "import sys; print(sys.executable)"
which python

Expand All @@ -52,7 +53,7 @@ jobs:
pip install --no-cache-dir numpy ${{ matrix.use_pre }}
echo "CONDA_PREFFIX is '${CONDA_PREFIX}'"
export MKLROOT=${CONDA_PREFIX}
pip install . --no-build-isolation --no-deps --verbose
CC=icx pip install . --no-build-isolation --no-deps --verbose
pip install --no-cache-dir pytest
pip list
# mkl_umath cannot be installed in editable mode, we need
Expand Down
Loading