add stage to display toolchain info
Rust/spacepackets/pipeline/head There was a failure building this commit Details
Rust/spacepackets/pipeline/pr-main There was a failure building this commit Details

This commit is contained in:
Robin Müller 2023-09-18 17:32:54 +02:00
parent 6116cdb27c
commit a4b14250c2
Signed by: muellerr
GPG Key ID: A649FB78196E3849
1 changed files with 4 additions and 0 deletions

View File

@ -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'