diff options
author | David Robertson <davidr@element.io> | 2022-10-03 14:56:40 +0100 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2022-10-03 14:56:40 +0100 |
commit | 3b73e73ca5b22e0aa162b1ede69052f52d54d153 (patch) | |
tree | d8a3a8d8561abcfc8475f6252760eaf40fcc396d | |
parent | Don't run tests while I'm experimenting (diff) | |
download | synapse-3b73e73ca5b22e0aa162b1ede69052f52d54d153.tar.xz |
Try another matrix syntax
-rw-r--r-- | .github/workflows/release-artifacts.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/release-artifacts.yml b/.github/workflows/release-artifacts.yml index b152975f64..ce824f9b87 100644 --- a/.github/workflows/release-artifacts.yml +++ b/.github/workflows/release-artifacts.yml @@ -94,15 +94,18 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, macos-10.15] - emulate_aarch64: [false] # 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 + emulate_aarch64: false + - os: ubuntu-20.04 emulate_aarch64: true + - os: macos-10.15 + emulate_aarch64: false exclude: # Don't build macos wheels on PR CI. |