File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,20 @@ THEDIR=$(dirname $(readlink -e ${BASH_SOURCE[0]}))
5
5
# We can not use common setup script because
6
6
# using Intel Python brakes build and run procedure
7
7
export ONEAPI_ROOT=/opt/intel/oneapi
8
- . ${ONEAPI_ROOT} /mkl/latest/env/vars.sh
8
+
9
9
. ${ONEAPI_ROOT} /compiler/latest/env/vars.sh
10
10
. ${ONEAPI_ROOT} /tbb/latest/env/vars.sh
11
11
12
+ if true
13
+ then
14
+ # Temporary use explicit version (arg_verz) due to MKLD-10520
15
+ arg_verz=latest
16
+ . ${ONEAPI_ROOT} /mkl/latest/env/vars.sh
17
+ unset arg_verz
18
+ else
19
+ . ${ONEAPI_ROOT} /mkl/latest/env/vars.sh
20
+ fi
21
+
12
22
export DPCPPROOT=${ONEAPI_ROOT} /compiler/latest
13
23
14
24
export PYTHONPATH=$PYTHONPATH :${THEDIR}
Original file line number Diff line number Diff line change @@ -229,3 +229,14 @@ jobs:
229
229
- publish : dpnp/backend/package_dpnp
230
230
artifact : ' package_backend_$(Agent.JobName)_$(Agent.OS)'
231
231
displayName : backend_cmake_oneapi_local_lin_package
232
+
233
+ - job : devenv_lin
234
+ displayName : devenv_lin
235
+ pool :
236
+ vmImage : ' ubuntu-20.04'
237
+ steps :
238
+ - bash : |
239
+ ./scripts/install_system_deps.sh # no intel python
240
+ ./scripts/install_python_deps.sh # numpy, conda-build and etc.
241
+ echo ========================= build DPNP package ===============================
242
+ ./0.build.sh
You can’t perform that action at this time.
0 commit comments