From 1fd720a9267629cc9ecbf53c2a3ad2b1c84b1929 Mon Sep 17 00:00:00 2001 From: Trinity Pointard Date: Sun, 31 Oct 2021 09:18:22 +0100 Subject: [PATCH] add ci check for deps minimal versions and msrv --- .gitlab-ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8d95b402f..e51723d1e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,6 +45,18 @@ rust-nightly: tags: - amd64 +minimal-versions: + stage: test + image: rust:1.56 + script: + - rustup install nightly + - cargo +nightly update -Z minimal-versions + - cargo update -p crc32fast -p lexical-core -p synstructure:0.12.0 # failing deps of deps + - cargo build --verbose --target x86_64-unknown-linux-gnu --all-features + - cargo test --verbose --all-features + tags: + - amd64 + build-repro: rules: - if: $CI_PIPELINE_SOURCE == "schedule"