summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Robertson <davidr@element.io>2022-10-03 16:05:20 +0100
committerDavid Robertson <davidr@element.io>2022-10-03 16:05:20 +0100
commitf84186eb3ac82d93d6c3bda5550692d601a71cd4 (patch)
tree20a018ff0befd1415e1b124911aca0a616ffcd70
parentYet another matrix syntax (diff)
downloadsynapse-github/dmr/arm-wheels.tar.xz
-rw-r--r--.github/workflows/release-artifacts.yml12
1 files changed, 5 insertions, 7 deletions
diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml
index fc9d508a41..07766f0e79 100644
--- a/.github/workflows/release-artifacts.yml
+++ b/.github/workflows/release-artifacts.yml
@@ -95,22 +95,20 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-20.04, macos-10.15]
-        emulate_aarch64: [false]
+        emulate_aarch64: [false, true]
         # is_pr is a flag used to exclude certain jobs from the matrix on PRs.
         # It is not read by the rest of the workflow.
         is_pr:
           - ${{ startsWith(github.ref, 'refs/pull/') }}
 
-        include:
-          - os: ubuntu-20.04
-            is_pr: ${{ startsWith(github.ref, 'refs/pull/') }}
-            emulate_aarch64: true
-
         exclude:
           # Don't build macos wheels on PR CI.
           - is_pr: true
             os: "macos-10.15"
-          # Don't build ARM linux wheels on PR CI either.
+          # Don't build aarch64 wheels on mac.
+          - os: "macos-10.15"
+            emulate_aarch64: true
+          # Don't build aarch64 wheels on PR CI.
           - is_pr: true
             emulate_aarch64: true