File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -413,14 +413,14 @@ jobs:
413
413
echo "deb https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
414
414
415
415
- name : Add ICC & Python 3
416
- run : sudo apt-get update; sudo apt-get install -y intel-oneapi-dpcpp-cpp-compiler-pro intel-oneapi-python cmake
416
+ run : sudo apt-get update; sudo apt-get install -y intel-oneapi-dpcpp-cpp-compiler-pro cmake python3-dev python3-numpy python3-pytest python3-pip libeigen3-dev
417
417
418
418
- name : Update pip & pytest
419
419
shell : bash
420
420
run : |
421
421
set +e; source /opt/intel/oneapi/setvars.sh; set -e
422
- python -m pip install --upgrade pip
423
- python -m pip install --upgrade pytest
422
+ python3 -m pip install --upgrade pip
423
+ python3 -m pip install --upgrade pytest
424
424
425
425
- name : Configure
426
426
shell : bash
@@ -432,7 +432,7 @@ jobs:
432
432
-DDOWNLOAD_EIGEN=OFF \
433
433
-DCMAKE_CXX_STANDARD=11 \
434
434
-DCMAKE_CXX_COMPILER=$(which icpc) \
435
- -DPYTHON_EXECUTABLE=$(python -c "import sys; print(sys.executable)")
435
+ -DPYTHON_EXECUTABLE=$(python3 -c "import sys; print(sys.executable)")
436
436
437
437
- name : Build
438
438
shell : bash
You can’t perform that action at this time.
0 commit comments