-
Notifications
You must be signed in to change notification settings - Fork 148
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 #436 from cuviper/release-0.4.3
Release 0.4.3
- Loading branch information
Showing
9 changed files
with
43 additions
and
63 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 |
---|---|---|
|
@@ -9,8 +9,7 @@ jobs: | |
strategy: | ||
matrix: | ||
rust: [ | ||
1.31.0, # 2018! | ||
1.36.0, # alloc, rand | ||
1.60.0, # MSRV | ||
stable, | ||
beta, | ||
nightly | ||
|
@@ -29,8 +28,8 @@ jobs: | |
- run: ./ci/test_full.sh | ||
|
||
# try a target that doesn't have std at all, but does have alloc | ||
no_std_stable: | ||
name: No Std (stable) | ||
no_std: | ||
name: No Std | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -39,22 +38,6 @@ jobs: | |
target: thumbv6m-none-eabi | ||
- run: cargo build --target thumbv6m-none-eabi --no-default-features --features "alloc libm serde rand" | ||
|
||
# try a target that doesn't have std at all, nor alloc | ||
no_std_131: | ||
name: No Std (1.31.0) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/cache@v4 | ||
with: | ||
path: ~/.cargo/registry/index | ||
key: cargo-1.31.0-git-index | ||
- uses: dtolnay/[email protected] | ||
with: | ||
target: thumbv6m-none-eabi | ||
- run: cargo generate-lockfile && cargo update -p libm --precise 0.2.5 | ||
- run: cargo build --target thumbv6m-none-eabi --no-default-features --features "libm" | ||
|
||
fmt: | ||
name: Format | ||
runs-on: ubuntu-latest | ||
|
@@ -70,7 +53,7 @@ jobs: | |
success: | ||
name: Success | ||
runs-on: ubuntu-latest | ||
needs: [test, no_std_131, no_std_stable, fmt] | ||
needs: [test, no_std, fmt] | ||
# Github branch protection is exceedingly silly and treats "jobs skipped because a dependency | ||
# failed" as success. So we have to do some contortions to ensure the job fails if any of its | ||
# dependencies fails. | ||
|
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
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