Skip to content

Commit

Permalink
fix(ci): add macos-14 (#1803)
Browse files Browse the repository at this point in the history
Enables ARM builds
  • Loading branch information
jmg-duarte authored May 16, 2024
1 parent 875a273 commit 6a533d0
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,12 @@ jobs:
build_release_for_mac:
name: build_release_for_mac
needs: build_release_for_linux
runs-on: macos-13 # x64
# runs-on: macos-latest is arm
strategy:
matrix:
target:
- { runner: macos-13, arch: x86_64 }
- { runner: macos-14, arch: arm64 }
runs-on: ${{ matrix.target.runner }}
steps:
- name: checkout
uses: actions/checkout@v4
Expand All @@ -99,5 +103,5 @@ jobs:
with:
upload_url: ${{ needs.build_release_for_linux.outputs.upload_url }}
asset_path: ./javascript/bins/zombienet-macos
asset_name: zombienet-macos
asset_name: zombienet-macos-${{ matrix.target.arch }}
asset_content_type: application/octet-stream

0 comments on commit 6a533d0

Please sign in to comment.