File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -4,4 +4,14 @@ if errorlevel 1 exit 1
4
4
REM conda uses %ERRORLEVEL% but FPGA scripts can set it. So it should be reseted.
5
5
set ERRORLEVEL =
6
6
7
+ echo on
8
+
7
9
%PYTHON% setup.py install --single-version-externally-managed --record=record.txt
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\numba_dppy*.whl %WHEELS_OUTPUT_FOLDER%
16
+ if errorlevel 1 exit 1
17
+ )
Original file line number Diff line number Diff line change 8
8
fi
9
9
10
10
${PYTHON} setup.py install --single-version-externally-managed --record=record.txt
11
+
12
+ # Build wheel package
13
+ if [ " $CONDA_PY " == " 36" ]; then
14
+ WHEELS_BUILD_ARGS=" -p manylinux1_x86_64"
15
+ else
16
+ WHEELS_BUILD_ARGS=" -p manylinux2014_x86_64"
17
+ fi
18
+ if [ -n " ${WHEELS_OUTPUT_FOLDER} " ]; then
19
+ $PYTHON setup.py bdist_wheel ${WHEELS_BUILD_ARGS}
20
+ cp dist/numba_dppy* .whl ${WHEELS_OUTPUT_FOLDER}
21
+ fi
You can’t perform that action at this time.
0 commit comments