mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-26 01:46:18 +03:00
Removed unnecessary arguments to multibuild functions
This commit is contained in:
parent
00f6624338
commit
d006407c66
6
.github/workflows/build.sh
vendored
6
.github/workflows/build.sh
vendored
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue
Block a user