From 3ce65eee2eba02aa5f726eb1d934a41d3d501e0f Mon Sep 17 00:00:00 2001 From: "Neal H. Walfield" Date: Tue, 20 Feb 2024 12:26:59 +0100 Subject: Find anyhow regression. --- .gitlab-ci.yml | 26 +++++++++++++------------- Cargo.lock | 3 +-- Cargo.toml | 3 +++ 3 files changed, 17 insertions(+), 15 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 04c58935..745f267b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -57,7 +57,7 @@ after_script: - if: $CI_PIPELINE_SOURCE == "push" && $CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH when: on_success -trixie: +.trixie: tags: - linux stage: build @@ -74,7 +74,7 @@ trixie: CARGO_TARGET_DIR: /target CARGO_HOME: /cargo -trixie-crypto-rust: +.trixie-crypto-rust: tags: - linux stage: build @@ -91,7 +91,7 @@ trixie-crypto-rust: CARGO_TARGET_DIR: /target CARGO_HOME: /cargo -trixie-crypto-openssl: +.trixie-crypto-openssl: tags: - linux stage: build @@ -108,7 +108,7 @@ trixie-crypto-openssl: CARGO_TARGET_DIR: /target CARGO_HOME: /cargo -trixie-crypto-botan: +.trixie-crypto-botan: tags: - linux stage: build @@ -123,7 +123,7 @@ trixie-crypto-botan: CARGO_TARGET_DIR: /target CARGO_HOME: /cargo -trixie-crypto-fuzzing: +.trixie-crypto-fuzzing: tags: - linux stage: build @@ -137,7 +137,7 @@ trixie-crypto-fuzzing: CARGO_TARGET_DIR: /target CARGO_HOME: /cargo -all_commits: +.all_commits: # Test each commit up to main, to facilitate bisecting. stage: test interruptible: true @@ -152,7 +152,7 @@ all_commits: CARGO_HOME: /cargo GIT_STRATEGY: clone -codespell: +.codespell: tags: - linux stage: pre-check @@ -168,7 +168,7 @@ codespell: rules: - !reference [.default_rules, rules] -doc: +.doc: tags: - linux stage: build @@ -182,7 +182,7 @@ doc: CARGO_TARGET_DIR: /target CARGO_HOME: /cargo -rust-stable: +.rust-stable: tags: - linux stage: build @@ -196,7 +196,7 @@ rust-stable: CARGO_TARGET_DIR: /target CARGO_HOME: /cargo -clippy: +.clippy: tags: - linux stage: build @@ -216,7 +216,7 @@ clippy: CARGO_TARGET_DIR: /target CARGO_HOME: /cargo -rust-stable-armv7: +.rust-stable-armv7: tags: - linux stage: build @@ -262,7 +262,7 @@ windows-msvc-cng: variables: CFLAGS: "" # Silence some C warnings when compiling with MSVC -windows-msvc32-cng: +.windows-msvc32-cng: tags: - win - win2019 @@ -302,7 +302,7 @@ windows-msvc32-cng: variables: CFLAGS: "" # Silence some C warnings when compiling with MSVC -authenticate-commits: +.authenticate-commits: stage: test interruptible: true image: registry.gitlab.com/sequoia-pgp/sequoia-git:latest diff --git a/Cargo.lock b/Cargo.lock index 085c1988..b29580a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -135,8 +135,7 @@ dependencies = [ [[package]] name = "anyhow" version = "1.0.76" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59d2a3357dde987206219e78ecfbbb6e8dad06cbb65292758d3270e6254f7355" +source = "git+https://github.com/dtolnay/anyhow.git?rev=b91db55c4eb21611832bba2eef4300d2816e1d04#b91db55c4eb21611832bba2eef4300d2816e1d04" [[package]] name = "ascii-canvas" diff --git a/Cargo.toml b/Cargo.toml index edebea10..6cd1b696 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,3 +11,6 @@ members = [ [profile.release] debug = true + +[patch.crates-io] +anyhow = { git = 'https://github.com/dtolnay/anyhow.git', rev = 'b91db55c4eb21611832bba2eef4300d2816e1d04' } -- cgit v1.2.3