Skip to content

Commit

Permalink
Only check with 1.72.0
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Kaitchuck <Tom.Kaitchuck@gmail.com>
  • Loading branch information
tkaitchuck committed Feb 11, 2024
1 parent d4a787e commit 3ba5c90
Showing 1 changed file with 14 additions and 41 deletions.
55 changes: 14 additions & 41 deletions .github/workflows/rust.yml
Expand Up @@ -56,18 +56,12 @@ jobs:
toolchain: stable
targets: armv7-unknown-linux-gnueabihf
- run: cargo check --target armv7-unknown-linux-gnueabihf
- name: Install 1.60.0
- name: Install 1.72.0
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.60.0
toolchain: 1.72.0
targets: armv7-unknown-linux-gnueabihf
- run: cargo +1.60.0 check --target armv7-unknown-linux-gnueabihf
- name: Install 1.71.1
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.71.1
targets: armv7-unknown-linux-gnueabihf
- run: cargo +1.71.1 check --target armv7-unknown-linux-gnueabihf
- run: cargo +1.72.0 check --target armv7-unknown-linux-gnueabihf
aarch64-apple-darwin:
name: Aarch64 Apple Darwin
runs-on: macos-latest
Expand All @@ -80,18 +74,12 @@ jobs:
- run: cargo check --target aarch64-apple-darwin
- run: cargo test
- run: cargo test --no-default-features --features compile-time-rng
- name: Install 1.60.0
- name: Install 1.72.0
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.60.0
toolchain: 1.72.0
targets: aarch64-apple-darwin
- run: cargo +1.60.0 check --target aarch64-apple-darwin
- name: Install 1.71.1
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.71.1
targets: aarch64-apple-darwin
- run: cargo +1.71.1 check --target aarch64-apple-darwin
- run: cargo +1.72.0 check --target aarch64-apple-darwin
i686-unknown-linux-gnu:
name: Linux i686
runs-on: ubuntu-latest
Expand All @@ -107,22 +95,14 @@ jobs:
- run: cargo test --target i686-unknown-linux-gnu
- name: check constrandom
run: cargo check --no-default-features --features compile-time-rng --target i686-unknown-linux-gnu
- name: Install 1.60.0
- name: Install 1.72.0
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.60.0
toolchain: 1.72.0
targets: i686-unknown-linux-gnu
- run: cargo +1.60.0 check --target i686-unknown-linux-gnu
- run: cargo +1.72.0 check --target i686-unknown-linux-gnu
- name: check constrandom
run: cargo +1.60.0 check --no-default-features --features compile-time-rng --target i686-unknown-linux-gnu
- name: Install 1.71.1
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.71.1
targets: i686-unknown-linux-gnu
- run: cargo +1.71.1 check --target i686-unknown-linux-gnu
- name: check constrandom
run: cargo +1.71.1 check --no-default-features --features compile-time-rng --target i686-unknown-linux-gnu
run: cargo +1.72.0 check --no-default-features --features compile-time-rng --target i686-unknown-linux-gnu
x86_64-unknown-linux-gnu:
name: Linux x86_64
runs-on: ubuntu-latest
Expand All @@ -138,20 +118,13 @@ jobs:
- run: cargo test --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
- name: Install 1.60.0
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.60.0
- run: cargo +1.60.0 check --target x86_64-unknown-linux-gnu
- name: check constrandom
run: cargo +1.60.0 check --no-default-features --features compile-time-rng --target x86_64-unknown-linux-gnu
- name: Install 1.71.1
- name: Install 1.72.0
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.71.1
- run: cargo +1.71.1 check --target x86_64-unknown-linux-gnu
toolchain: 1.72.0
- run: cargo +1.72.0 check --target x86_64-unknown-linux-gnu
- name: check constrandom
run: cargo +1.71.1 check --no-default-features --features compile-time-rng --target x86_64-unknown-linux-gnu
run: cargo +1.72.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 3ba5c90

Please sign in to comment.