mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-07-10 08:12:33 +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 "::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
|
||||||
|
|
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user