Skip to content

Commit

Permalink
Merge branch 'gold/2021' into release0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
PokhodenkoSA committed Feb 25, 2021
2 parents 659ce59 + 2494fbd commit 4e9ba5a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
10 changes: 10 additions & 0 deletions conda-recipe/bld.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,14 @@ if errorlevel 1 exit 1
REM conda uses %ERRORLEVEL% but FPGA scripts can set it. So it should be reseted.
set ERRORLEVEL=

echo on

%PYTHON% setup.py install --single-version-externally-managed --record=record.txt

rem Build wheel package
if NOT "%WHEELS_OUTPUT_FOLDER%"=="" (
%PYTHON% setup.py bdist_wheel
if errorlevel 1 exit 1
copy dist\numba_dppy*.whl %WHEELS_OUTPUT_FOLDER%
if errorlevel 1 exit 1
)
11 changes: 11 additions & 0 deletions conda-recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,14 @@ else
fi

${PYTHON} setup.py install --single-version-externally-managed --record=record.txt

# Build wheel package
if [ "$CONDA_PY" == "36" ]; then
WHEELS_BUILD_ARGS="-p manylinux1_x86_64"
else
WHEELS_BUILD_ARGS="-p manylinux2014_x86_64"
fi
if [ -n "${WHEELS_OUTPUT_FOLDER}" ]; then
$PYTHON setup.py bdist_wheel ${WHEELS_BUILD_ARGS}
cp dist/numba_dppy*.whl ${WHEELS_OUTPUT_FOLDER}
fi

0 comments on commit 4e9ba5a

Please sign in to comment.