Pillow/.github/workflows/wheels.yml

119 lines
3.3 KiB
YAML
Raw Normal View History

2020-10-23 16:23:03 +03:00
name: Wheels
2020-10-24 05:17:17 +03:00
on: [push, pull_request]
2020-10-23 16:23:03 +03:00
2020-10-24 04:17:04 +03:00
env:
REPO_DIR: Pillow
BUILD_DEPENDS: ""
TEST_DEPENDS: "pytest pytest-cov"
WHEEL_SDIR: wheelhouse
2020-10-23 16:23:03 +03:00
jobs:
build:
2020-10-24 04:17:04 +03:00
name: ${{ matrix.python }} ${{ matrix.os-name }} ${{ matrix.platform }}
runs-on: ${{ matrix.os }}
2020-10-23 16:23:03 +03:00
strategy:
2020-10-24 04:17:04 +03:00
fail-fast: false
2020-10-23 16:23:03 +03:00
matrix:
2021-05-04 19:21:38 +03:00
os: [ "ubuntu-20.04", "macos-latest" ]
2021-02-08 12:54:53 +03:00
python: [ "pypy3.7-7.3.3","pypy3.6-7.3.3", "3.6", "3.7", "3.8", "3.9" ]
2020-10-23 16:23:03 +03:00
platform: [ "x86_64", "i686" ]
2021-01-30 02:38:55 +03:00
macos-target: [ "10.10" ]
2020-10-23 17:16:09 +03:00
exclude:
- os: "macos-latest"
platform: "i686"
2020-10-24 04:17:04 +03:00
include:
- os: "macos-latest"
os-name: "osx"
2021-05-04 19:21:38 +03:00
- os: "ubuntu-20.04"
2020-10-24 04:17:04 +03:00
os-name: "xenial"
# Disable whilst not available
# - os: "macos-11.0"
# os-name: "osx"
# platform: "arm64"
# python: "3.9"
# macos-target: "11.0"
2020-10-23 16:23:03 +03:00
env:
BUILD_COMMIT: HEAD
PLAT: ${{ matrix.platform }}
MB_PYTHON_VERSION: ${{ matrix.python }}
2020-10-24 04:17:04 +03:00
TRAVIS_OS_NAME: ${{ matrix.os-name }}
2021-01-30 02:38:55 +03:00
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos-target }}
2020-10-23 16:23:03 +03:00
steps:
- uses: actions/checkout@v2
with:
submodules: true
2020-10-24 04:17:04 +03:00
- uses: actions/setup-python@v2
2020-10-23 16:23:03 +03:00
with:
2020-11-06 15:27:16 +03:00
python-version: 3.9
2020-10-23 16:23:03 +03:00
- name: Build Wheel
2020-10-24 04:17:04 +03:00
run: .github/workflows/build.sh
2020-10-23 16:23:03 +03:00
- uses: actions/upload-artifact@v2
with:
name: wheels
path: wheelhouse/*.whl
2020-10-24 04:17:04 +03:00
# Uncomment to get SSH access for testing
# - name: Setup tmate session
# if: failure()
# uses: mxschmitt/action-tmate@v3
build-latest:
name: ${{ matrix.python }} ${{ matrix.os-name }} ${{ matrix.platform }} latest
runs-on: ${{ matrix.os }}
if: "!startsWith(github.ref, 'refs/tags/')"
strategy:
fail-fast: false
matrix:
2021-05-04 19:21:38 +03:00
os: [ "ubuntu-20.04", "macos-latest" ]
2021-02-08 12:54:53 +03:00
python: [ "pypy3.7-7.3.3", "pypy3.6-7.3.3", "3.6", "3.7", "3.8", "3.9" ]
2020-10-24 04:17:04 +03:00
platform: [ "x86_64", "i686" ]
2021-01-30 02:38:55 +03:00
macos-target: [ "10.10" ]
2020-10-24 04:17:04 +03:00
exclude:
- os: "macos-latest"
platform: "i686"
include:
- os: "macos-latest"
os-name: "osx"
2021-05-04 19:21:38 +03:00
- os: "ubuntu-20.04"
2020-10-24 04:17:04 +03:00
os-name: "xenial"
2021-01-30 02:38:55 +03:00
- os: "macos-11.0"
os-name: "osx"
platform: "arm64"
python: "3.9"
macos-target: "11.0"
2020-10-24 04:17:04 +03:00
env:
BUILD_COMMIT: master
PLAT: ${{ matrix.platform }}
MB_PYTHON_VERSION: ${{ matrix.python }}
TRAVIS_OS_NAME: ${{ matrix.os-name }}
2021-01-30 02:38:55 +03:00
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.macos-target }}
2020-10-24 04:17:04 +03:00
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-python@v2
with:
2020-11-06 15:27:16 +03:00
python-version: 3.9
2020-10-24 04:17:04 +03:00
- name: Build Wheel
run: .github/workflows/build.sh
- uses: actions/upload-artifact@v2
with:
name: wheels-latest
path: wheelhouse/*.whl
2020-10-23 18:20:37 +03:00
release:
name: Create Release
runs-on: ubuntu-latest
2020-10-24 04:17:04 +03:00
if: "startsWith(github.ref, 'refs/tags/')"
2020-10-23 18:20:37 +03:00
needs: build
steps:
- uses: actions/download-artifact@v2
with:
name: wheels
- name: Upload Release
uses: fnkr/github-action-ghr@v1.3
env:
GHR_PATH: .
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}