@@ -314,56 +314,56 @@ jobs:
314314# artifact: 'package_$(Agent.JobName)_$(Agent.OS)'
315315# displayName: conda_build_dpnp_dpctl_lin_package
316316
317- - job : make_backend_lin
318- displayName : cmake_3_16_3_lin
319- pool :
320- vmImage : ' ubuntu-20.04'
321- steps :
322- - bash : |
323- ./scripts/install_system_deps.sh
324- echo ========================= install cmake 3.16.3 ===============================
325- curl --output cmake_webimage.tar.gz \
326- --url https://cmake.org/files/v3.16/cmake-3.16.3-Linux-x86_64.tar.gz \
327- --retry 5 --retry-delay 5
328-
329- tar -xzf cmake_webimage.tar.gz
330- rm -f cmake_webimage.tar.gz
331-
332- export PATH=`pwd`/cmake-3.16.3-Linux-x86_64/bin:$PATH
333-
334- which cmake
335- cmake --version
336-
337- echo ========================= Intel OneAPI setvars ===============================
338- . /opt/intel/oneapi/setvars.sh
339-
340- export DPNP_BACKEND_BUILD_DIR=dpnp/backend/0.build
341- mkdir -p $DPNP_BACKEND_BUILD_DIR
342- cd $DPNP_BACKEND_BUILD_DIR
343-
344- echo ========================= build DPNP package ===============================
345- cmake ..
346- cmake --build . --target install -- VERBOSE=1
347- - publish : dpnp/backend/package_dpnp
348- artifact : ' package_backend_$(Agent.JobName)_$(Agent.OS)'
349- displayName : backend_cmake_oneapi_local_lin_package
350-
351- - job : devenv_lin
352- displayName : devenv_lin
353- pool :
354- vmImage : ' ubuntu-20.04'
355- steps :
356- - bash : |
357- echo ========================= Conda ENV ==================================
358- conda create -q -y -n dpnp
359- . /usr/share/miniconda/etc/profile.d/conda.sh
360- conda activate dpnp
361- echo ========================= CI ENV =====================================
362- . ./scripts/install_cmake_lin.sh
363- ./scripts/install_system_deps.sh # no intel python
364- ./scripts/install_python_deps.sh # numpy, conda-build and etc.
365- echo ========================= build DPNP package =========================
366- ./0.build.sh
317+ # - job: make_backend_lin
318+ # displayName: cmake_3_16_3_lin
319+ # pool:
320+ # vmImage: 'ubuntu-20.04'
321+ # steps:
322+ # - bash: |
323+ # ./scripts/install_system_deps.sh
324+ # echo ========================= install cmake 3.16.3 ===============================
325+ # curl --output cmake_webimage.tar.gz \
326+ # --url https://cmake.org/files/v3.16/cmake-3.16.3-Linux-x86_64.tar.gz \
327+ # --retry 5 --retry-delay 5
328+ #
329+ # tar -xzf cmake_webimage.tar.gz
330+ # rm -f cmake_webimage.tar.gz
331+ #
332+ # export PATH=`pwd`/cmake-3.16.3-Linux-x86_64/bin:$PATH
333+ #
334+ # which cmake
335+ # cmake --version
336+ #
337+ # echo ========================= Intel OneAPI setvars ===============================
338+ # . /opt/intel/oneapi/setvars.sh
339+ #
340+ # export DPNP_BACKEND_BUILD_DIR=dpnp/backend/0.build
341+ # mkdir -p $DPNP_BACKEND_BUILD_DIR
342+ # cd $DPNP_BACKEND_BUILD_DIR
343+ #
344+ # echo ========================= build DPNP package ===============================
345+ # cmake ..
346+ # cmake --build . --target install -- VERBOSE=1
347+ # - publish: dpnp/backend/package_dpnp
348+ # artifact: 'package_backend_$(Agent.JobName)_$(Agent.OS)'
349+ # displayName: backend_cmake_oneapi_local_lin_package
350+
351+ # - job: devenv_lin
352+ # displayName: devenv_lin
353+ # pool:
354+ # vmImage: 'ubuntu-20.04'
355+ # steps:
356+ # - bash: |
357+ # echo ========================= Conda ENV ==================================
358+ # conda create -q -y -n dpnp
359+ # . /usr/share/miniconda/etc/profile.d/conda.sh
360+ # conda activate dpnp
361+ # echo ========================= CI ENV =====================================
362+ # . ./scripts/install_cmake_lin.sh
363+ # ./scripts/install_system_deps.sh # no intel python
364+ # ./scripts/install_python_deps.sh # numpy, conda-build and etc.
365+ # echo ========================= build DPNP package =========================
366+ # ./0.build.sh
367367
368368# DPNP backend clib tests building and running
369369- job : test_dpnp_backend_clib_lin
0 commit comments