From a4b14250c28497662e80e7762fb4d5a8f500358c Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 18 Sep 2023 17:32:54 +0200 Subject: [PATCH] add stage to display toolchain info --- automation/Jenkinsfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/automation/Jenkinsfile b/automation/Jenkinsfile index 41c4d46..f056948 100644 --- a/automation/Jenkinsfile +++ b/automation/Jenkinsfile @@ -8,6 +8,10 @@ pipeline { } stages { + stage ('Rust Toolchain Info') { + def rustVersion =sh(script: 'rustc --version', returnStatus: true).trim() + echo "Rust Toolchain Vrsion: ${rustVersion}" + } stage('Clippy') { steps { sh 'cargo clippy'