From 38ae7625690e99a4dede60962703d9eefd3da16d Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Sat, 18 May 2024 17:34:18 +0100 Subject: [PATCH] ci: fix msrv just variable --- justfile | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/justfile b/justfile index ad188756..eb046683 100644 --- a/justfile +++ b/justfile @@ -8,7 +8,7 @@ downgrade-for-msrv: msrv := ``` cargo metadata --format-version=1 \ - | jq -r 'first(.packages[] | select(.source == null and .name == "actix-tls")) | .rust_version' \ + | jq -r 'first(.packages[] | select(.source == null and .rust_version)) | .rust_version' \ | sed -E 's/^1\.([0-9]{2})$/1\.\1\.0/' ``` msrv_rustup := "+" + msrv @@ -27,13 +27,6 @@ all_crate_features := if os() == "linux" { "--features='" + non_linux_all_features_list + "'" } -m: - cargo metadata --format-version=1 \ - | jq -r 'first(.packages[] | select(.source == null)) | .rust_version' \ - | sed -E 's/^1\.([0-9]{2})$/1\.\1\.0/' \ - | xargs -0 printf "msrv=%s" \ - | tee /dev/stderr - # Test workspace code. test toolchain="": cargo {{ toolchain }} test --lib --tests --package=actix-macros @@ -48,7 +41,7 @@ test-docs toolchain="": && doc cargo {{ toolchain }} test --doc --workspace {{ all_crate_features }} --no-fail-fast -- --nocapture # Test workspace. -test-all toolchain="": (test toolchain) (test-docs) +test-all toolchain="": (test toolchain) (test-docs toolchain) # Document crates in workspace. doc *args: