add stage to display toolchain info
This commit is contained in:
parent
6116cdb27c
commit
a4b14250c2
4
automation/Jenkinsfile
vendored
4
automation/Jenkinsfile
vendored
@ -8,6 +8,10 @@ pipeline {
|
|||||||
}
|
}
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
|
stage ('Rust Toolchain Info') {
|
||||||
|
def rustVersion =sh(script: 'rustc --version', returnStatus: true).trim()
|
||||||
|
echo "Rust Toolchain Vrsion: ${rustVersion}"
|
||||||
|
}
|
||||||
stage('Clippy') {
|
stage('Clippy') {
|
||||||
steps {
|
steps {
|
||||||
sh 'cargo clippy'
|
sh 'cargo clippy'
|
||||||
|
Loading…
Reference in New Issue
Block a user