From f84186eb3ac82d93d6c3bda5550692d601a71cd4 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Mon, 3 Oct 2022 16:05:20 +0100 Subject: [PATCH] I just want to cry --- .github/workflows/release-artifacts.yml | 12 +++++------- 1 file 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