File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -255,4 +255,5 @@ jobs:
255
255
./scripts/install_system_deps.sh # no intel python
256
256
./scripts/install_python_deps.sh # numpy, conda-build and etc.
257
257
echo ========================= build DPNP package ===============================
258
+ export DPNP_BACKEND_TESTS_ENABLE=1
258
259
./0.build.sh
Original file line number Diff line number Diff line change 73
73
"""
74
74
pass
75
75
76
+ """
77
+ Detect enabling DPNP backend tests
78
+ """
79
+ _dpnp_backend_tests_enable = os .environ .get ('DPNP_BACKEND_TESTS_ENABLE' , None )
80
+
76
81
77
82
"""
78
83
CmakeList.txt based build_clib
@@ -99,7 +104,7 @@ def run(self):
99
104
100
105
if IS_WIN :
101
106
cmake_generator = "-GNinja"
102
- if IS_LIN :
107
+ if _dpnp_backend_tests_enable is not None :
103
108
enable_tests = "ON"
104
109
105
110
cmake_args = [
You can’t perform that action at this time.
0 commit comments