-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #47 from dhardy/work
rand_jitter v0.4, platform_ns_time feature, MSRV=1.51, rustfmt
- Loading branch information
Showing
9 changed files
with
108 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,9 +48,6 @@ jobs: | |
target: x86_64-pc-windows-msvc | ||
toolchain: beta | ||
# Test both windows-gnu and windows-msvc; use beta rust on one | ||
- os: ubuntu-latest | ||
target: x86_64-unknown-linux-gnu | ||
toolchain: 1.36.0 # MSRV | ||
- os: ubuntu-latest | ||
deps: sudo apt-get update ; sudo apt install gcc-multilib | ||
target: i686-unknown-linux-gnu | ||
|
@@ -85,12 +82,38 @@ jobs: | |
cargo test --target ${{ matrix.target }} --manifest-path rand_xoshiro/Cargo.toml --all-features | ||
cargo test --target ${{ matrix.target }} --manifest-path rand_jitter/Cargo.toml --all-features | ||
msrv: | ||
name: MSRV for rand_isaac / rand_xorshift / rand_xoshiro | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/[email protected] # older versions may work (untested) | ||
- run: cd rand_isaac && cargo test --all-features | ||
- run: cd rand_xorshift && cargo test --all-features | ||
- run: cd rand_xoshiro && cargo test --all-features | ||
|
||
msrv_hc: | ||
name: MSRV for rand_hc | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/[email protected] | ||
- run: cd rand_hc && cargo test --all-features | ||
|
||
msrv_jitter: | ||
name: MSRV for rand_jitter | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/[email protected] | ||
- run: cd rand_jitter && cargo test --features std | ||
|
||
test-cross: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
target: [mips-unknown-linux-gnu] | ||
target: [powerpc-unknown-linux-gnu] | ||
toolchain: [stable] | ||
|
||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.