summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWiktor Kwapisiewicz <wiktor@metacode.biz>2023-05-30 09:25:40 +0200
committerWiktor Kwapisiewicz <wiktor@metacode.biz>2023-09-06 14:01:42 +0200
commit6eff0a69fc7208c2096e9e22e00c5317f6553879 (patch)
tree07a6c324fe6d20b58ab64c214dab2fa4cf08730b
parenta8127384578bb815e07258f6ad1dc65c5e55a187 (diff)
ci: Add minimal versions check.direct-minimal-versions-check
- This will check if our lower bounds for dependencies are valid.
-rw-r--r--.gitlab-ci.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b2498d2f..19279959 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -164,6 +164,22 @@ rust-stable:
CARGO_TARGET_DIR: /target
CARGO_HOME: /cargo
+check-minimal-versions:
+ tags:
+ - linux
+ stage: build
+ interruptible: true
+ image: 192.168.122.1:5000/sequoia-pgp/build-docker-image/rust-stable-prebuild:latest
+ before_script:
+ - *before_script_start
+ - rustup default nightly
+ - *before_script_end
+ script:
+ - CARGO_PACKAGES="-p sequoia-openpgp" cargo test -Zdirect-minimal-versions
+ variables:
+ CARGO_TARGET_DIR: /target
+ CARGO_HOME: /cargo
+
clippy:
tags:
- linux