Removed unnecessary arguments to multibuild functions

This commit is contained in:
Andrew Murray 2022-04-10 15:06:44 +10:00
parent 00f6624338
commit d006407c66
2 changed files with 6 additions and 6 deletions

View File

@ -29,13 +29,13 @@ echo "::group::Install a virtualenv"
echo "::endgroup::" echo "::endgroup::"
echo "::group::Build wheel" echo "::group::Build wheel"
clean_code $REPO_DIR $BUILD_COMMIT clean_code
build_wheel $REPO_DIR $PLAT build_wheel
ls -l "${GITHUB_WORKSPACE}/${WHEEL_SDIR}/" ls -l "${GITHUB_WORKSPACE}/${WHEEL_SDIR}/"
echo "::endgroup::" echo "::endgroup::"
if [[ $MACOSX_DEPLOYMENT_TARGET != "11.0" ]]; then if [[ $MACOSX_DEPLOYMENT_TARGET != "11.0" ]]; then
echo "::group::Test wheel" echo "::group::Test wheel"
install_run $PLAT install_run
echo "::endgroup::" echo "::endgroup::"
fi fi

View File

@ -41,12 +41,12 @@ before_install:
install: install:
# Maybe get and clean and patch source # Maybe get and clean and patch source
- clean_code $REPO_DIR $BUILD_COMMIT - clean_code
- build_wheel $REPO_DIR $PLAT - build_wheel
- ls -l "${TRAVIS_BUILD_DIR}/${WHEEL_SDIR}/" - ls -l "${TRAVIS_BUILD_DIR}/${WHEEL_SDIR}/"
script: script:
- install_run $PLAT - install_run
# Upload wheels to GitHub Releases # Upload wheels to GitHub Releases
deploy: deploy: