Skip to content

Commit

Permalink
Add checks for ARM too
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Kaitchuck <tom.kaitchuck@emc.com>
  • Loading branch information
tkaitchuck committed Jan 8, 2024
1 parent f624cd1 commit e328cef
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ jobs:
toolchain: stable
targets: armv7-unknown-linux-gnueabihf
- run: cargo check --target armv7-unknown-linux-gnueabihf
- name: Install 1.60.0
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.60.0
targets: armv7-unknown-linux-gnueabihf
- run: cargo check --target armv7-unknown-linux-gnueabihf
aarch64-apple-darwin:
name: Aarch64 Apple Darwin
runs-on: macos-latest
Expand All @@ -66,6 +72,12 @@ jobs:
toolchain: stable
targets: aarch64-apple-darwin
- run: cargo check --target aarch64-apple-darwin
- name: Install 1.60.0
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.60.0
targets: aarch64-apple-darwin
- run: cargo check --target aarch64-apple-darwin
i686-unknown-linux-gnu:
name: Linux i686
runs-on: ubuntu-latest
Expand Down

0 comments on commit e328cef

Please sign in to comment.