summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJames R. Barlow <james@purplerock.ca>2022-07-03 22:35:25 -0700
committerJames R. Barlow <james@purplerock.ca>2022-07-03 23:31:01 -0700
commitd32a69608ca6548a6b3a881fd7851942b9dd3e2a (patch)
tree3c2048c3d7528febb0ddaf3c1c6da72926c60a37 /.github
parentfcf3706d3ef5a4f618c97af7dd84259d56fa65ce (diff)
Exclude PyPy-aarch64 from build -- too many dependencies missing
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 12794d5..ec594c5 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -6,7 +6,7 @@ on: [push, pull_request]
jobs:
wheels_linux:
- name: 🏗 ${{ matrix.os }} - ${{ matrix.platform }}
+ name: ${{ matrix.os }} - ${{ matrix.platform }}
runs-on: ${{ matrix.os }}
env:
CIBW_BUILD: "*-${{ matrix.platform }}"
@@ -57,7 +57,7 @@ jobs:
if-no-files-found: error
wheels_linux_arm:
- name: 🏗 ${{ matrix.os }} - ${{ matrix.platform }}
+ name: self-hosted - ${{ matrix.platform }}
runs-on: self-hosted
env:
CIBW_BUILD: "*-${{ matrix.platform }}"
@@ -83,7 +83,7 @@ jobs:
if-no-files-found: error
wheels_macos:
- name: 🏗 ${{ matrix.os }}
+ name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
@@ -110,7 +110,7 @@ jobs:
path: ./wheelhouse/*.whl
wheels_windows:
- name: 🏗 ${{ matrix.os }} - ${{ matrix.platform }}
+ name: ${{ matrix.os }} - ${{ matrix.platform }}
runs-on: ${{ matrix.os }}
env:
CIBW_BUILD: "*-${{ matrix.platform }}"
@@ -152,7 +152,7 @@ jobs:
path: ./wheelhouse/*.whl
sdist:
- name: 🏗 source distribution
+ name: source distribution
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
@@ -223,7 +223,7 @@ jobs:
trigger_rtd:
name: Trigger ReadTheDocs
runs-on: ubuntu-latest
- needs: [wheels_linux, wheels_macos, wheels_windows, sdist]
+ needs: [wheels_linux]
if: startsWith(github.ref, 'refs/heads/') && !startsWith(github.ref, 'refs/heads/actions')
steps:
- name: Get branch name
@@ -237,7 +237,7 @@ jobs:
https://readthedocs.org/api/v2/webhook/pikepdf/163029/
upload_pypi:
- needs: [wheels_linux, wheels_macos, wheels_windows, sdist]
+ needs: [wheels_linux, wheels_linux_arm, wheels_macos, wheels_windows, sdist]
runs-on: ubuntu-latest
# upload to PyPI on every tag starting with 'v'
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v')