Skip to content

Commit b6bb968

Browse files
committed
chore(ci): fix pinning for 1.75.0 MSRV
1 parent 7138749 commit b6bb968

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

ci/pin-msrv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -euo pipefail
55

66
# Pin dependencies for MSRV (1.75.0)
77
cargo update -p minreq --precise "2.13.2"
8-
cargo update -p idna_adapter --precise "1.2.0"
98
cargo update -p native-tls --precise "0.2.13"
9+
cargo update -p idna_adapter --precise "1.2.0"
1010
cargo update -p zerofrom --precise "0.1.5"
1111
cargo update -p litemap --precise "0.7.4"

justfile

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,13 @@ fmt:
2828

2929
# Build and test using the MSRV toolchain (1.75.0)
3030
msrv:
31-
bash ci/pin-msrv.sh
32-
cargo +1.75.0 build --all-features
33-
cargo +1.75.0 test --all-features -- --test-threads=1
31+
rm -rf Cargo.lock
32+
bash ci/pin-msrv.sh
33+
cargo +1.75.0 build --all-features
34+
cargo +1.75.0 test --all-features -- --test-threads=1
3435

3536
# Run pre-push suite: format, check, and test
36-
pre-push: fmt check test
37+
pre-push: fmt check test msrv
3738

3839
# Run all tests on the workspace with all features
3940
test:

0 commit comments

Comments
 (0)