mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 12:17:14 +03:00
36 lines
1014 B
Bash
Executable File
36 lines
1014 B
Bash
Executable File
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
# these cause a conflict with built webp and libtiff,
|
|
# curl from brew requires zstd, use system curl
|
|
brew remove --ignore-dependencies webp zstd xz libtiff curl
|
|
fi
|
|
|
|
if [[ "$MB_PYTHON_VERSION" == pypy3* ]]; then
|
|
if [[ "$TRAVIS_OS_NAME" != "macos-latest" ]]; then
|
|
MB_ML_VER="2010"
|
|
DOCKER_TEST_IMAGE="multibuild/xenial_$PLAT"
|
|
else
|
|
MB_PYTHON_OSX_VER="10.9"
|
|
fi
|
|
fi
|
|
|
|
echo "::group::Install a virtualenv"
|
|
source multibuild/common_utils.sh
|
|
source multibuild/travis_steps.sh
|
|
# can't use default 7.3.1 on macOS due to https://foss.heptapod.net/pypy/pypy/-/issues/3229
|
|
LATEST_PP_7p3=7.3.3
|
|
python3 -m pip install virtualenv
|
|
before_install
|
|
echo "::endgroup::"
|
|
|
|
echo "::group::Build wheel"
|
|
clean_code $REPO_DIR $BUILD_COMMIT
|
|
build_wheel $REPO_DIR $PLAT
|
|
ls -l "${GITHUB_WORKSPACE}/${WHEEL_SDIR}/"
|
|
echo "::endgroup::"
|
|
|
|
if [[ $MACOSX_DEPLOYMENT_TARGET != "11.0" ]]; then
|
|
echo "::group::Test wheel"
|
|
install_run $PLAT
|
|
echo "::endgroup::"
|
|
fi |