Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 8 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,19 @@ jobs:
- name: Windows x86_64
runner-os: windows-latest
cargo-target: x86_64-pc-windows-msvc

- name: Windows aarch64
runner-os: windows-11-arm
cargo-target: aarch64-pc-windows-msvc

- name: Linux x86_64
runner-os: ubuntu-latest
cargo-target: x86_64-unknown-linux-gnu

- name: Linux aarch64
runner-os: ubuntu-24.04-arm
cargo-target: aarch64-unknown-linux-gnu

- name: macOS x86_64
runner-os: macos-13
cargo-target: x86_64-apple-darwin
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ jobs:
artifact-name: rokit-${{ needs.init.outputs.version }}-windows-x86_64
cargo-target: x86_64-pc-windows-msvc

- name: Windows aarch64
runner-os: windows-11-arm
artifact-name: rokit-${{ needs.init.outputs.version }}-windows-aarch64
cargo-target: aarch64-pc-windows-msvc

- name: Linux x86_64
runner-os: ubuntu-latest
artifact-name: rokit-${{ needs.init.outputs.version }}-linux-x86_64
Expand Down
Loading