Pillow/.travis.yml

136 lines
3.1 KiB
YAML
Raw Normal View History

if: tag IS present OR type = api
2014-06-28 20:30:10 +04:00
env:
global:
- CONFIG_PATH=wheels/config.sh
- REPO_DIR=.
2022-04-10 08:57:37 +03:00
- PLAT=aarch64
- TEST_DEPENDS=pytest-timeout
2016-06-20 21:30:30 +03:00
language: python
# Default Python version is usually 3.6
python: "3.12"
dist: jammy
2016-06-20 21:30:30 +03:00
services: docker
jobs:
2016-06-20 21:30:30 +03:00
include:
2022-05-31 03:12:20 +03:00
- name: "3.8 Focal manylinux2014 aarch64"
os: linux
arch: arm64
env:
- MB_ML_VER=2014
- MB_PYTHON_VERSION=3.8
- name: "3.8 Focal manylinux_2_28 aarch64"
2020-06-28 11:59:15 +03:00
os: linux
arch: arm64
env:
2022-05-31 03:12:20 +03:00
- MB_ML_VER="_2_28"
2020-06-28 11:59:15 +03:00
- MB_PYTHON_VERSION=3.8
2022-12-12 03:52:31 +03:00
- name: "3.8 musllinux_1_1 aarch64"
os: linux
arch: arm64
env:
- MB_ML_VER="_1_1"
- MB_ML_LIBC="musllinux"
- MB_PYTHON_VERSION=3.8
2022-05-31 03:12:20 +03:00
- name: "3.9 Focal manylinux2014 aarch64"
2020-08-27 13:53:50 +03:00
os: linux
arch: arm64
env:
2022-05-31 03:12:20 +03:00
- MB_ML_VER=2014
2020-08-27 13:53:50 +03:00
- MB_PYTHON_VERSION=3.9
2022-05-31 03:12:20 +03:00
- name: "3.9 Focal manylinux_2_28 aarch64"
os: linux
arch: arm64
env:
- MB_ML_VER="_2_28"
- MB_PYTHON_VERSION=3.9
2022-12-12 03:52:31 +03:00
- name: "3.9 musllinux_1_1 aarch64"
os: linux
arch: arm64
env:
- MB_ML_VER="_1_1"
- MB_ML_LIBC="musllinux"
- MB_PYTHON_VERSION=3.9
2022-05-31 03:12:20 +03:00
- name: "3.10 Focal manylinux2014 aarch64"
os: linux
arch: arm64
env:
- MB_ML_VER=2014
- MB_PYTHON_VERSION=3.10
- name: "3.10 Focal manylinux_2_28 aarch64"
2021-08-12 11:06:43 +03:00
os: linux
arch: arm64
env:
2022-05-31 03:12:20 +03:00
- MB_ML_VER="_2_28"
2021-08-12 11:06:43 +03:00
- MB_PYTHON_VERSION=3.10
2022-12-12 03:52:31 +03:00
- name: "3.10 musllinux_1_1 aarch64"
os: linux
arch: arm64
env:
- MB_ML_VER="_1_1"
- MB_ML_LIBC="musllinux"
- MB_PYTHON_VERSION=3.10
2022-06-26 08:33:09 +03:00
- name: "3.11 Focal manylinux_2_28 aarch64"
os: linux
arch: arm64
env:
- MB_ML_VER=2014
- MB_PYTHON_VERSION=3.11
- name: "3.11 Focal manylinux_2_28 aarch64"
os: linux
arch: arm64
env:
- MB_ML_VER="_2_28"
- MB_PYTHON_VERSION=3.11
2022-12-12 03:52:31 +03:00
- name: "3.11 musllinux_1_1 aarch64"
os: linux
arch: arm64
env:
- MB_ML_VER="_1_1"
- MB_ML_LIBC="musllinux"
- MB_PYTHON_VERSION=3.11
2023-05-31 10:41:41 +03:00
- name: "3.12 Focal manylinux_2_28 aarch64"
os: linux
arch: arm64
env:
- MB_ML_VER=2014
- MB_PYTHON_VERSION=3.12
- name: "3.12 Focal manylinux_2_28 aarch64"
os: linux
arch: arm64
env:
- MB_ML_VER="_2_28"
- MB_PYTHON_VERSION=3.12
- name: "3.12 musllinux_1_1 aarch64"
os: linux
arch: arm64
env:
- MB_ML_VER="_1_1"
- MB_ML_LIBC="musllinux"
- MB_PYTHON_VERSION=3.12
2020-06-28 11:59:15 +03:00
2016-06-20 21:30:30 +03:00
before_install:
- source wheels/multibuild/common_utils.sh
- source wheels/multibuild/travis_steps.sh
2016-06-20 21:30:30 +03:00
- before_install
2014-06-28 20:30:10 +04:00
install:
2023-08-16 07:53:47 +03:00
- build_multilinux aarch64 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
tags: true
skip_cleanup: true