Skip to content

Commit

Permalink
Added AArch64 Targets To CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Redfire75369 committed Aug 5, 2024
1 parent b0139ce commit 1161bf0
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,23 +24,36 @@ jobs:
matrix:
rust: [stable, beta]
os: [windows, macos, linux]
arch: [x86_64]
arch: [x86_64, aarch64]
include:
- os: windows
arch: x86_64
runner: windows-latest
target: x86_64-pc-windows-msvc
job: test
- os: windows
arch: aarch64
runner: windows-latest
target: aarch64-pc-windows-msvc
- os: macos
arch: x86_64
runner: macos-13
target: x86_64-apple-darwin
job: test
- os: macos
arch: aarch64
runner: macos-14
target: aarch64-apple-darwin
job: test
- os: linux
arch: x86_64
runner: ubuntu-latest
target: x86_64-unknown-linux-gnu
job: test
- os: linux
arch: aarch64
runner: ubuntu-latest
target: aarch64-unknown-linux-gnu
env:
TARGET: ${{ matrix.target }}

Expand All @@ -50,6 +63,7 @@ jobs:
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@master
with:
targets: ${{ matrix.target }}
toolchain: ${{ matrix.rust }}

- name: Setup Dependencies
Expand Down

0 comments on commit 1161bf0

Please sign in to comment.