@@ -136,21 +136,28 @@ jobs:
136
136
vmImage : ' windows-2019' # 'vs2017-win2016'
137
137
steps :
138
138
- script : |
139
- call ./ scripts/ install_system_deps_win.bat
140
- call ./ scripts/ install_cmake_win.bat
139
+ call scripts\ install_system_deps_win.bat
140
+ call scripts\ install_cmake_win.bat
141
141
142
142
echo ========================= Intel OneAPI setvars ===============================
143
- call "C:\Program Files (x86)\Intel\oneAPI\setvars.bat" intel64 vs2019
144
-
143
+ # call "C:\Program Files (x86)\Intel\oneAPI\setvars.bat" intel64 vs2019
144
+ set "ONEAPI_ROOT=C:\Program Files (x86)\Intel\oneAPI\"
145
+
146
+ echo =================== conda install conda-build ===========================
147
+ :: call scripts\install_python_deps.sh
148
+ conda install -y conda-build -c "%ONEAPI_ROOT%\conda_channel"
149
+
150
+ call scripts\build_deps_dpctl_win.bat
145
151
echo =================== build DPNP bdist_wheel package ===========================
146
152
:: cmake -G Ninja ..
147
153
:: cmake --build . --target install -- -v
148
154
:: python setup.py build_clib
149
155
:: python setup.py build_ext --inplace
150
156
python setup.py bdist_wheel
151
- - publish : dist
152
- artifact : ' package_$(Agent.JobName)_$(Agent.OS)'
153
- displayName : bdist_wheel_dpnp_local_win_package
157
+ dir
158
+ :: - publish: dist
159
+ :: artifact: 'package_$(Agent.JobName)_$(Agent.OS)'
160
+ :: displayName: bdist_wheel_local_win
154
161
155
162
# test python ./setup.py bdist_wheel command with dpctl
156
163
- job : wheel_dpnp_dpctl_lin
0 commit comments