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 "::group::Build wheel"
clean_code $REPO_DIR $BUILD_COMMIT
build_wheel $REPO_DIR $PLAT
clean_code
build_wheel
ls -l "${GITHUB_WORKSPACE}/${WHEEL_SDIR}/"
echo "::endgroup::"
if [[ $MACOSX_DEPLOYMENT_TARGET != "11.0" ]]; then
echo "::group::Test wheel"
install_run $PLAT
install_run
echo "::endgroup::"
fi

View File

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