try 2
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:38:56 +02:00
parent 90e48483bb
commit b94d07f6c9
Signed by: muellerr
GPG Key ID: A649FB78196E3849
1 changed files with 4 additions and 2 deletions

View File

@ -9,8 +9,10 @@ pipeline {
stages {
stage('Rust Toolchain Info') {
def rustVersion = sh(script: 'rustc --version', returnStatus: true).trim()
echo "Rust Toolchain Vrsion: ${rustVersion}"
steps {
def rustVersion = sh(script: 'rustc --version', returnStatus: true).trim()
echo "Rust Toolchain Vrsion: ${rustVersion}"
}
}
stage('Clippy') {
steps {