mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
73fc7a9f3d
Travis CI: Upgrade PyPy from 5.8.0 to 6.0
100 lines
2.8 KiB
YAML
100 lines
2.8 KiB
YAML
dist: xenial
|
|
language: python
|
|
cache: pip
|
|
|
|
notifications:
|
|
irc: "chat.freenode.net#pil"
|
|
|
|
# Run fast lint first to get fast feedback.
|
|
# Run slow PyPy* next, to give them a headstart and reduce waiting time.
|
|
# Run latest 3.x and 2.x next, to get quick compatibility results.
|
|
# Then run the remainder, with fastest Docker jobs last.
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- python: "3.6"
|
|
name: "Lint"
|
|
env: LINT="true"
|
|
- python: "pypy2.7-6.0"
|
|
name: "PyPy2 Xenial"
|
|
dist: xenial
|
|
- python: "pypy3.5-6.0"
|
|
name: "PyPy3 Xenial"
|
|
dist: xenial
|
|
- python: '3.7'
|
|
name: "3.7 Xenial"
|
|
- python: '2.7'
|
|
name: "2.7 Xenial"
|
|
- python: '2.7'
|
|
name: "2.7 Trusty"
|
|
dist: trusty
|
|
- python: "2.7_with_system_site_packages" # For PyQt4
|
|
name: "2.7_with_system_site_packages Xenial"
|
|
- python: "2.7_with_system_site_packages" # For PyQt4
|
|
name: "2.7_with_system_site_packages Trusty"
|
|
dist: trusty
|
|
- python: '3.6'
|
|
name: "3.6 Xenial"
|
|
- python: '3.6'
|
|
name: "3.6 Trusty PYTHONOPTIMIZE=1"
|
|
dist: trusty
|
|
env: PYTHONOPTIMIZE=1
|
|
- python: '3.5'
|
|
name: "3.5 Xenial"
|
|
- python: '3.5'
|
|
name: "3.5 Trusty PYTHONOPTIMIZE=2"
|
|
dist: trusty
|
|
env: PYTHONOPTIMIZE=2
|
|
- python: '3.4'
|
|
name: "3.4 Trusty"
|
|
dist: trusty
|
|
- env: DOCKER="alpine" DOCKER_TAG="pytest"
|
|
- env: DOCKER="arch" DOCKER_TAG="pytest" # contains PyQt5
|
|
- env: DOCKER="ubuntu-trusty-x86" DOCKER_TAG="pytest"
|
|
- env: DOCKER="ubuntu-xenial-amd64" DOCKER_TAG="pytest"
|
|
- env: DOCKER="debian-stretch-x86" DOCKER_TAG="pytest"
|
|
- env: DOCKER="centos-6-amd64" DOCKER_TAG="pytest"
|
|
- env: DOCKER="centos-7-amd64" DOCKER_TAG="pytest"
|
|
- env: DOCKER="amazon-1-amd64" DOCKER_TAG="pytest"
|
|
- env: DOCKER="amazon-2-amd64" DOCKER_TAG="pytest"
|
|
- env: DOCKER="fedora-26-amd64" DOCKER_TAG="pytest"
|
|
- env: DOCKER="fedora-27-amd64" DOCKER_TAG="pytest"
|
|
|
|
services:
|
|
- docker
|
|
|
|
install:
|
|
- |
|
|
if [ "$LINT" == "true" ]; then
|
|
pip install -U flake8
|
|
elif [ "$DOCKER" == "" ]; then
|
|
.travis/install.sh;
|
|
fi
|
|
|
|
before_install:
|
|
- if [ "$DOCKER" ]; then travis_retry docker pull pythonpillow/$DOCKER:$DOCKER_TAG; fi
|
|
|
|
before_script:
|
|
# Qt needs a display for some of the tests, and it's only run on the system site packages install
|
|
- "export DISPLAY=:99.0"
|
|
- "sh -e /etc/init.d/xvfb start"
|
|
|
|
script:
|
|
- |
|
|
if [ "$LINT" == "true" ]; then
|
|
flake8 --statistics --count
|
|
elif [ "$DOCKER" == "" ]; then
|
|
.travis/script.sh
|
|
elif [ "$DOCKER" ]; then
|
|
# the Pillow user in the docker container is UID 1000
|
|
sudo chown -R 1000 $TRAVIS_BUILD_DIR
|
|
docker run -v $TRAVIS_BUILD_DIR:/Pillow pythonpillow/$DOCKER:$DOCKER_TAG
|
|
fi
|
|
|
|
after_success:
|
|
- |
|
|
if [ "$LINT" == "" ]; then
|
|
.travis/after_success.sh
|
|
fi
|