Skip to content

Commit

Permalink
ci: Fix image matrix array
Browse files Browse the repository at this point in the history
Signed-off-by: eXhumer <[email protected]>
  • Loading branch information
eXhumer committed Aug 21, 2024
1 parent 3ffad5a commit 670b95f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ jobs:
strategy:
matrix:
image: [
{os: macos-latest, arch: [arm64, universal, x64], python: '3.12'},
{os: ubuntu-latest, arch: [x64]},
{os: windows-latest, arch: [ia32, x64]}
{os: macos-latest, arch: arm64, python: '3.12'},
{os: macos-latest, arch: universal, python: '3.12'},
{os: macos-latest, arch: x64, python: '3.12'},
{os: ubuntu-latest, arch: x64},
{os: windows-latest, arch: ia32},
{os: windows-latest, arch: x64}
]
node: [22]
runs-on: ${{ matrix.image.os }}
Expand Down

0 comments on commit 670b95f

Please sign in to comment.