From 5c395003083ec18c0106346670702b5aefe123fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 10 Sep 2024 08:33:40 +0300 Subject: [PATCH] ci: Ignore derive_more 1.0 update until MSRV can be updated to 1.75+ Part-of: --- .gitlab-ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 145edcd29..1bfa21470 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -409,7 +409,8 @@ outdated: - if: $CI_PIPELINE_SOURCE == "schedule" script: - cargo update --color=always - - cargo outdated --color=always --root-deps-only --exit-code 1 -v + # Ignore derive_more until we can depend on Rust 1.75 or newer + - cargo outdated --color=always --root-deps-only --exit-code 1 -v --ignore derive_more coverage: allow_failure: true