Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,19 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-14, windows-latest]
include:
- os: ubuntu-latest
arch: x86_64
name: linux-x64
- os: ubuntu-24.04-arm
arch: aarch64
name: linux-arm64
- os: macos-14
arch: aarch64
name: macos-arm64
- os: windows-latest
arch: x86_64
name: windows-x64
defaults:
run:
shell: bash
Expand All @@ -30,7 +42,7 @@ jobs:

- name: install ninja (linux)
run: sudo apt-get install ninja-build
if: startsWith(matrix.os, 'ubuntu-')
if: contains(matrix.os, 'ubuntu')
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line can be reverted now I think


- name: install ninja (osx)
run: brew install ninja
Expand Down Expand Up @@ -61,7 +73,7 @@ jobs:

- uses: ./.github/actions/release-archive
with:
os: ${{ matrix.os }}
os: ${{ matrix.name }}
upload_to_release: true

build-wasi:
Expand Down
Loading