mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-29 03:16:18 +03:00
Merge pull request #213 from hugovk/add-3.10-travis
This commit is contained in:
commit
f27fe2a316
12
.github/workflows/lint.yml
vendored
Normal file
12
.github/workflows/lint.yml
vendored
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
name: Lint
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lint:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: actions/setup-python@v2
|
||||||
|
- uses: pre-commit/action@v2.0.3
|
9
.pre-commit-config.yaml
Normal file
9
.pre-commit-config.yaml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
repos:
|
||||||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||||
|
rev: 38b88246ccc552bffaaf54259d064beeee434539 # frozen: v4.0.1
|
||||||
|
hooks:
|
||||||
|
- id: check-merge-conflict
|
||||||
|
- id: check-yaml
|
||||||
|
|
||||||
|
ci:
|
||||||
|
autoupdate_schedule: quarterly
|
24
.travis.yml
24
.travis.yml
|
@ -15,36 +15,44 @@ services: docker
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
include:
|
include:
|
||||||
- name: "3.6 Xenial aarch64"
|
- name: "3.6 Focal aarch64"
|
||||||
arch: arm64
|
arch: arm64
|
||||||
env:
|
env:
|
||||||
- PLAT=aarch64
|
- PLAT=aarch64
|
||||||
- MB_ML_VER=2014
|
- MB_ML_VER=2014
|
||||||
- MB_PYTHON_VERSION=3.6
|
- MB_PYTHON_VERSION=3.6
|
||||||
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
|
- DOCKER_TEST_IMAGE=multibuild/focal_{PLAT}
|
||||||
- name: "3.7 Xenial aarch64"
|
- name: "3.7 Focal aarch64"
|
||||||
arch: arm64
|
arch: arm64
|
||||||
env:
|
env:
|
||||||
- PLAT=aarch64
|
- PLAT=aarch64
|
||||||
- MB_ML_VER=2014
|
- MB_ML_VER=2014
|
||||||
- MB_PYTHON_VERSION=3.7
|
- MB_PYTHON_VERSION=3.7
|
||||||
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
|
- DOCKER_TEST_IMAGE=multibuild/focal_{PLAT}
|
||||||
- name: "3.8 Xenial aarch64"
|
- name: "3.8 Focal aarch64"
|
||||||
os: linux
|
os: linux
|
||||||
arch: arm64
|
arch: arm64
|
||||||
env:
|
env:
|
||||||
- PLAT=aarch64
|
- PLAT=aarch64
|
||||||
- MB_ML_VER=2014
|
- MB_ML_VER=2014
|
||||||
- MB_PYTHON_VERSION=3.8
|
- MB_PYTHON_VERSION=3.8
|
||||||
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
|
- DOCKER_TEST_IMAGE=multibuild/focal_{PLAT}
|
||||||
- name: "3.9 Xenial aarch64"
|
- name: "3.9 Focal aarch64"
|
||||||
os: linux
|
os: linux
|
||||||
arch: arm64
|
arch: arm64
|
||||||
env:
|
env:
|
||||||
- PLAT=aarch64
|
- PLAT=aarch64
|
||||||
- MB_ML_VER=2014
|
- MB_ML_VER=2014
|
||||||
- MB_PYTHON_VERSION=3.9
|
- MB_PYTHON_VERSION=3.9
|
||||||
- DOCKER_TEST_IMAGE=multibuild/xenial_{PLAT}
|
- DOCKER_TEST_IMAGE=multibuild/focal_{PLAT}
|
||||||
|
- name: "3.10 Focal aarch64"
|
||||||
|
os: linux
|
||||||
|
arch: arm64
|
||||||
|
env:
|
||||||
|
- PLAT=aarch64
|
||||||
|
- MB_ML_VER=2014
|
||||||
|
- MB_PYTHON_VERSION=3.10
|
||||||
|
- DOCKER_TEST_IMAGE=multibuild/focal_{PLAT}
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- source multibuild/common_utils.sh
|
- source multibuild/common_utils.sh
|
||||||
|
|
Loading…
Reference in New Issue
Block a user