Skip to content

Commit

Permalink
Explicetly add version to build command
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 e328cef commit 0cc74ca
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
with:
toolchain: 1.60.0
targets: armv7-unknown-linux-gnueabihf
- run: cargo check --target armv7-unknown-linux-gnueabihf
- run: cargo +1.60.0 check --target armv7-unknown-linux-gnueabihf
aarch64-apple-darwin:
name: Aarch64 Apple Darwin
runs-on: macos-latest
Expand All @@ -77,7 +77,7 @@ jobs:
with:
toolchain: 1.60.0
targets: aarch64-apple-darwin
- run: cargo check --target aarch64-apple-darwin
- run: cargo +1.60.0 check --target aarch64-apple-darwin
i686-unknown-linux-gnu:
name: Linux i686
runs-on: ubuntu-latest
Expand All @@ -98,9 +98,9 @@ jobs:
with:
toolchain: 1.60.0
targets: i686-unknown-linux-gnu
- run: cargo check --target i686-unknown-linux-gnu
- run: cargo +1.60.0 check --target i686-unknown-linux-gnu
- name: check constrandom
run: cargo check --no-default-features --features compile-time-rng --target i686-unknown-linux-gnu
run: cargo +1.60.0 check --no-default-features --features compile-time-rng --target i686-unknown-linux-gnu
x86_64-unknown-linux-gnu:
name: Linux x86_64 - nightly
runs-on: ubuntu-latest
Expand All @@ -120,9 +120,9 @@ jobs:
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.60.0
- run: cargo check --target x86_64-unknown-linux-gnu
- run: cargo +1.60.0 check --target x86_64-unknown-linux-gnu
- name: check constrandom
run: cargo check --no-default-features --features compile-time-rng --target x86_64-unknown-linux-gnu
run: cargo +1.60.0 check --no-default-features --features compile-time-rng --target x86_64-unknown-linux-gnu
thumbv6m:
name: thumbv6m
runs-on: ubuntu-latest
Expand Down

0 comments on commit 0cc74ca

Please sign in to comment.