File tree Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Expand file tree Collapse file tree 3 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -7,3 +7,11 @@ IF %ERRORLEVEL% NEQ 0 (
7
7
" %PYTHON% " setup.py clean --all
8
8
" %PYTHON% " setup.py install
9
9
IF %ERRORLEVEL% NEQ 0 exit /b 1
10
+
11
+ rem Build wheel package
12
+ if NOT " %WHEELS_OUTPUT_FOLDER% " == " " (
13
+ %PYTHON% setup.py bdist_wheel
14
+ if errorlevel 1 exit 1
15
+ copy dist\dpctl*.whl %WHEELS_OUTPUT_FOLDER%
16
+ if errorlevel 1 exit 1
17
+ )
Original file line number Diff line number Diff line change 11
11
12
12
${PYTHON} setup.py clean --all
13
13
${PYTHON} setup.py install
14
+
15
+ # Build wheel package
16
+ if [ -n " ${WHEELS_OUTPUT_FOLDER} " ]; then
17
+ $PYTHON setup.py bdist_wheel -p manylinux1_x86_64
18
+ cp dist/dpctl* .whl ${WHEELS_OUTPUT_FOLDER}
19
+ fi
Original file line number Diff line number Diff line change 11
11
number : {{ GIT_DESCRIBE_NUMBER }}
12
12
script_env :
13
13
- ONEAPI_ROOT
14
+ - WHEELS_OUTPUT_FOLDER
14
15
15
16
requirements :
16
17
build :
@@ -23,6 +24,7 @@ requirements:
23
24
- make # [unix]
24
25
- ninja # [win]
25
26
- numpy >=1.17
27
+ - wheel
26
28
run :
27
29
- python
28
30
- numpy >=1.17
You can’t perform that action at this time.
0 commit comments