-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9622f0a
commit cd4aeed
Showing
4 changed files
with
18 additions
and
34 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 |
---|---|---|
|
@@ -8,49 +8,29 @@ on: | |
- main | ||
|
||
jobs: | ||
test_msrv: | ||
name: test on MSRV | ||
build_msrv: | ||
name: build on MSRV | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions-rs/[email protected] | ||
with: | ||
# When toolchain is not specified, it uses rust-toolchain, which is the MSRV | ||
override: true | ||
- uses: actions-rs/[email protected] | ||
with: | ||
command: test | ||
args: --all-features | ||
- uses: actions/[email protected] | ||
- uses: dtolnay/[email protected] | ||
- run: cargo build --all-features | ||
|
||
test_nightly: | ||
name: test on nightly | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
# Because we use nightly features for building docs, | ||
# using --all-features will fail without nightly toolchain. | ||
- uses: actions-rs/[email protected] | ||
with: | ||
toolchain: nightly | ||
override: true | ||
- uses: actions-rs/[email protected] | ||
with: | ||
command: test | ||
args: --all-features | ||
- uses: actions/[email protected] | ||
- uses: dtolnay/rust-toolchain@nightly | ||
- run: cargo test --all-features | ||
|
||
build_no_std: | ||
name: build with no_std | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3.5.3 | ||
- uses: actions-rs/toolchain@v1.0.7 | ||
- uses: actions/checkout@v4.0.0 | ||
- uses: dtolnay/rust-toolchain@master | ||
with: | ||
toolchain: stable | ||
override: true | ||
# This does not support std, so we use to test if no_std works | ||
target: thumbv6m-none-eabi | ||
- uses: actions-rs/[email protected] | ||
with: | ||
command: build | ||
# Disables std feature | ||
args: --no-default-features --target thumbv6m-none-eabi | ||
targets: thumbv6m-none-eabi | ||
- run: cargo build --no-default-features --target thumbv6m-none-eabi |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
name = "ed25519-zebra" | ||
# Before publishing: | ||
# - update CHANGELOG.md | ||
version = "4.0.2" | ||
# - ensure MSRV below (rust-version) and in main.yml are the same | ||
version = "4.0.3" | ||
rust-version = "1.65.0" | ||
authors = ["Henry de Valence <[email protected]>", "Zcash Foundation <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
|
This file was deleted.
Oops, something went wrong.