From 63733885d20967319e0fb37dec137d117d1d9406 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Mon, 27 Dec 2021 01:22:53 +0100 Subject: [PATCH] CI: Show rustc and cargo version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- .gitlab-ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 42aea7cb..4e1c7094 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,12 +6,21 @@ variables: FEATURES: "" RUST_BACKTRACE: "full" +.show-version: + before_script: + - rustc --version + - cargo --version + .stable: image: rust:latest + extends: + - .show-version .nightly: image: rustlang/rust:nightly allow_failure: true # It's not often, but it happens nightly breaks, surprisingly. + extends: + - .show-version .test: stage: test