2022-03-30 03:36:47 +03:00
|
|
|
name: Build macOS wheels
|
2022-02-21 16:41:52 +03:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
build-commit:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
artifacts-name:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
|
|
|
|
env:
|
|
|
|
REPO_DIR: Pillow
|
2022-03-19 15:05:56 +03:00
|
|
|
TEST_DEPENDS: "pytest pytest-timeout"
|
2022-02-21 16:41:52 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-03-30 03:36:47 +03:00
|
|
|
name: ${{ matrix.python }} ${{ matrix.platform }}
|
|
|
|
runs-on: "macos-latest"
|
2022-02-21 16:41:52 +03:00
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2022-03-30 14:26:53 +03:00
|
|
|
python: [ "pypy3.7-7.3.9", "pypy3.8-7.3.9", "3.7", "3.8", "3.9", "3.10" ]
|
2022-03-30 13:19:24 +03:00
|
|
|
platform: [ "x86_64", "arm64" ]
|
2022-03-30 10:39:13 +03:00
|
|
|
exclude:
|
2022-03-30 10:35:11 +03:00
|
|
|
- python: "3.7"
|
2022-03-30 10:39:13 +03:00
|
|
|
platform: "arm64"
|
2022-03-30 14:26:53 +03:00
|
|
|
- python: "pypy3.7-7.3.9"
|
2022-03-30 10:39:13 +03:00
|
|
|
platform: "arm64"
|
2022-03-30 14:26:53 +03:00
|
|
|
- python: "pypy3.8-7.3.9"
|
2022-03-30 10:39:13 +03:00
|
|
|
platform: "arm64"
|
2022-02-21 16:41:52 +03:00
|
|
|
env:
|
|
|
|
BUILD_COMMIT: ${{ inputs.build-commit }}
|
|
|
|
PLAT: ${{ matrix.platform }}
|
|
|
|
MB_PYTHON_VERSION: ${{ matrix.python }}
|
2022-03-30 03:36:47 +03:00
|
|
|
TRAVIS_OS_NAME: "osx"
|
2022-02-21 16:41:52 +03:00
|
|
|
steps:
|
2022-03-04 12:57:39 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-02-21 16:41:52 +03:00
|
|
|
with:
|
|
|
|
submodules: true
|
2022-03-04 12:57:39 +03:00
|
|
|
- uses: actions/setup-python@v3
|
2022-02-21 16:41:52 +03:00
|
|
|
with:
|
2022-03-24 01:46:56 +03:00
|
|
|
python-version: "3.10"
|
2022-02-21 16:41:52 +03:00
|
|
|
- name: Build Wheel
|
|
|
|
run: .github/workflows/build.sh
|
2022-03-04 12:57:39 +03:00
|
|
|
- uses: actions/upload-artifact@v3
|
2022-02-21 16:41:52 +03:00
|
|
|
with:
|
|
|
|
name: ${{ inputs.artifacts-name }}
|
|
|
|
path: wheelhouse/*.whl
|
|
|
|
# Uncomment to get SSH access for testing
|
|
|
|
# - name: Setup tmate session
|
|
|
|
# if: failure()
|
|
|
|
# uses: mxschmitt/action-tmate@v3
|