forked from rust-bitcoin/rust-secp256k1
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We want to depend on the newly released version of `hashes` which has an MSRV of 1.56.1 Bump the MSRV for the main crate `secp256k1` to Rust `v1.56.1` as it is for most of the rest of our crates. Leave `secp256k1-sys` as it is, and add a basic CI job to test we can run tests with default features using 1.48.0 still for that crate only.
- Loading branch information
Showing
3 changed files
with
18 additions
and
4 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 |
---|---|---|
|
@@ -54,8 +54,8 @@ jobs: | |
DO_ASAN: true | ||
run: ./contrib/test.sh | ||
|
||
MSRV: | ||
name: Test - 1.48.0 toolchain | ||
MSRV-secp256k1-sys: | ||
name: secp256k1-sys - test 1.48.0 | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
|
@@ -64,6 +64,19 @@ jobs: | |
uses: actions/checkout@v3 | ||
- name: Checkout Toolchain | ||
uses: dtolnay/[email protected] | ||
- name: Test default features | ||
run: cd secp256k1-sys && cargo test | ||
|
||
MSRV: | ||
name: Test - 1.56.1 toolchain | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
steps: | ||
- name: Checkout Crate | ||
uses: actions/checkout@v3 | ||
- name: Checkout Toolchain | ||
uses: dtolnay/[email protected] | ||
- name: Running test script | ||
env: | ||
DO_FEATURE_MATRIX: true | ||
|
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