Pillow/.travis.yml

60 lines
1.2 KiB
YAML
Raw Normal View History

2014-06-28 20:30:10 +04:00
env:
global:
2016-06-20 21:30:30 +03:00
- REPO_DIR=Pillow
2016-10-03 18:11:43 +03:00
- BUILD_COMMIT=HEAD
2022-04-10 08:57:37 +03:00
- PLAT=aarch64
2022-03-19 15:06:19 +03:00
- TEST_DEPENDS="pytest pytest-timeout"
2016-06-20 21:30:30 +03:00
language: python
# Default Python version is usually 3.6
2022-01-24 00:33:43 +03:00
python: "3.10"
2021-05-20 04:39:39 +03:00
dist: focal
2016-06-20 21:30:30 +03:00
services: docker
jobs:
2016-06-20 21:30:30 +03:00
include:
2021-08-12 11:05:35 +03:00
- name: "3.7 Focal aarch64"
2020-06-28 11:59:15 +03:00
arch: arm64
env:
- MB_PYTHON_VERSION=3.7
2021-08-12 11:05:35 +03:00
- name: "3.8 Focal aarch64"
2020-06-28 11:59:15 +03:00
os: linux
arch: arm64
env:
- MB_PYTHON_VERSION=3.8
2021-08-12 11:05:35 +03:00
- name: "3.9 Focal aarch64"
2020-08-27 13:53:50 +03:00
os: linux
arch: arm64
env:
- MB_PYTHON_VERSION=3.9
2021-08-12 11:06:43 +03:00
- name: "3.10 Focal aarch64"
os: linux
arch: arm64
env:
- MB_PYTHON_VERSION=3.10
2020-06-28 11:59:15 +03:00
2016-06-20 21:30:30 +03:00
before_install:
- source multibuild/common_utils.sh
- source multibuild/travis_steps.sh
- before_install
2014-06-28 20:30:10 +04:00
install:
2016-06-20 21:30:30 +03:00
# Maybe get and clean and patch source
- clean_code
- build_wheel
- ls -l "${TRAVIS_BUILD_DIR}/${WHEEL_SDIR}/"
2014-06-28 20:30:10 +04:00
script:
- install_run
# Upload wheels to GitHub Releases
deploy:
provider: releases
2021-09-15 16:39:03 +03:00
api_key: $GITHUB_RELEASE_TOKEN
file_glob: true
file: "${TRAVIS_BUILD_DIR}/${WHEEL_SDIR}/*.whl"
on:
repo: python-pillow/pillow-wheels
tags: true
skip_cleanup: true