name: Build wheels on: workflow_call: inputs: build-commit: required: true type: string artifacts-name: required: true type: string env: REPO_DIR: Pillow BUILD_DEPENDS: "" TEST_DEPENDS: "pytest pytest-timeout" WHEEL_SDIR: wheelhouse jobs: build: name: ${{ matrix.os-name }} ${{ matrix.python }} ${{ matrix.platform }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ "macos-latest", "ubuntu-20.04" ] python: [ "pypy3.7-7.3.8", "pypy3.8-7.3.8", "3.7", "3.8", "3.9", "3.10" ] platform: [ "arm64", "x86_64", "i686" ] exclude: - os: "macos-latest" platform: "i686" - os: "macos-latest" platform: "arm64" python: "3.7" - os: "macos-latest" platform: "arm64" python: "pypy3.7-7.3.8" - os: "macos-latest" platform: "arm64" python: "pypy3.8-7.3.8" - os: "ubuntu-20.04" platform: "arm64" include: - os: "macos-latest" os-name: "osx" - os: "ubuntu-20.04" os-name: "focal" env: BUILD_COMMIT: ${{ inputs.build-commit }} PLAT: ${{ matrix.platform }} MB_PYTHON_VERSION: ${{ matrix.python }} TRAVIS_OS_NAME: ${{ matrix.os-name }} steps: - uses: actions/checkout@v3 with: submodules: true - uses: actions/setup-python@v3 with: python-version: "3.10" - name: Build Wheel run: .github/workflows/build.sh - uses: actions/upload-artifact@v3 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