2019-09-22 17:09:27 +03:00
|
|
|
name: Test
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
strategy:
|
2019-10-12 12:14:49 +03:00
|
|
|
fail-fast: false
|
2019-09-22 17:09:27 +03:00
|
|
|
matrix:
|
2019-09-22 23:09:59 +03:00
|
|
|
os: [
|
2019-11-06 19:27:06 +03:00
|
|
|
"ubuntu-latest",
|
|
|
|
"macOS-latest",
|
2019-09-22 23:09:59 +03:00
|
|
|
]
|
2019-09-22 17:09:27 +03:00
|
|
|
python-version: [
|
|
|
|
"pypy3",
|
2019-11-04 23:55:50 +03:00
|
|
|
"3.8",
|
2019-09-22 17:09:27 +03:00
|
|
|
"3.7",
|
|
|
|
"3.6",
|
2019-11-04 23:55:50 +03:00
|
|
|
"3.5",
|
2019-09-22 17:09:27 +03:00
|
|
|
]
|
|
|
|
include:
|
|
|
|
- python-version: "3.5"
|
|
|
|
env: PYTHONOPTIMIZE=2
|
|
|
|
- python-version: "3.6"
|
|
|
|
env: PYTHONOPTIMIZE=1
|
2019-09-22 23:09:59 +03:00
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
|
2019-09-22 17:09:27 +03:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
2019-11-04 10:06:09 +03:00
|
|
|
- name: Ubuntu cache
|
2019-11-17 14:24:37 +03:00
|
|
|
uses: actions/cache@v1
|
2019-11-04 10:06:09 +03:00
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
|
|
|
with:
|
|
|
|
path: ~/.cache/pip
|
2019-11-17 14:24:37 +03:00
|
|
|
key:
|
2020-01-08 16:41:48 +03:00
|
|
|
${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/.ci/*.sh') }}
|
2019-11-17 14:24:37 +03:00
|
|
|
restore-keys: |
|
|
|
|
${{ matrix.os }}-${{ matrix.python-version }}-
|
2019-11-04 10:06:09 +03:00
|
|
|
|
|
|
|
- name: macOS cache
|
2019-11-17 14:24:37 +03:00
|
|
|
uses: actions/cache@v1
|
2019-11-04 10:06:09 +03:00
|
|
|
if: startsWith(matrix.os, 'macOS')
|
|
|
|
with:
|
|
|
|
path: ~/Library/Caches/pip
|
2019-11-17 14:24:37 +03:00
|
|
|
key:
|
2020-01-08 16:41:48 +03:00
|
|
|
${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('**/.ci/*.sh') }}
|
2019-11-17 14:24:37 +03:00
|
|
|
restore-keys: |
|
|
|
|
${{ matrix.os }}-${{ matrix.python-version }}-
|
2019-11-04 10:06:09 +03:00
|
|
|
|
2019-09-22 17:09:27 +03:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
|
|
uses: actions/setup-python@v1
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
|
2019-12-09 23:35:31 +03:00
|
|
|
- name: Build system information
|
|
|
|
run: python .github/workflows/system-info.py
|
|
|
|
|
2019-09-22 23:09:59 +03:00
|
|
|
- name: Install Linux dependencies
|
2019-10-09 15:10:27 +03:00
|
|
|
if: startsWith(matrix.os, 'ubuntu')
|
2019-09-22 17:09:27 +03:00
|
|
|
run: |
|
2020-01-08 16:41:48 +03:00
|
|
|
.ci/install.sh
|
2019-09-22 17:09:27 +03:00
|
|
|
|
2019-09-22 23:09:59 +03:00
|
|
|
- name: Install macOS dependencies
|
2019-10-09 15:10:27 +03:00
|
|
|
if: startsWith(matrix.os, 'macOS')
|
2019-09-22 23:09:59 +03:00
|
|
|
run: |
|
|
|
|
.github/workflows/macos-install.sh
|
|
|
|
|
2019-09-23 17:02:09 +03:00
|
|
|
- name: Build
|
|
|
|
run: |
|
2020-01-08 16:41:48 +03:00
|
|
|
.ci/build.sh
|
2019-09-23 17:02:09 +03:00
|
|
|
|
2019-09-22 17:09:27 +03:00
|
|
|
- name: Test
|
|
|
|
run: |
|
2020-01-08 16:41:48 +03:00
|
|
|
.ci/test.sh
|
2019-09-22 17:09:27 +03:00
|
|
|
|
2019-10-12 13:59:03 +03:00
|
|
|
- name: Upload errors
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
name: errors
|
|
|
|
path: Tests/errors
|
|
|
|
|
2019-09-22 17:09:27 +03:00
|
|
|
- name: After success
|
|
|
|
if: success()
|
|
|
|
run: |
|
2020-01-08 16:41:48 +03:00
|
|
|
.ci/after_success.sh
|
2019-09-22 17:09:27 +03:00
|
|
|
env:
|
2019-11-20 20:22:38 +03:00
|
|
|
MATRIX_OS: ${{ matrix.os }}
|
2019-09-22 17:09:27 +03:00
|
|
|
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
2019-11-20 15:00:59 +03:00
|
|
|
|
2019-12-24 11:11:46 +03:00
|
|
|
- name: Prepare coverage token
|
|
|
|
if: success() && github.repository == 'python-pillow/Pillow'
|
|
|
|
run: cp .github/codecov-upstream.yml .codecov.yml
|
|
|
|
|
2019-11-20 15:00:59 +03:00
|
|
|
- name: Upload coverage
|
|
|
|
if: success()
|
|
|
|
uses: codecov/codecov-action@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
name: ${{ matrix.os }} Python ${{ matrix.python-version }}
|