bQUARKz 87c51ba8fc
Some checks failed
Rust CI / CI occurred while executing withChecks step.
update jenkinsfile
2026-04-07 10:07:25 +01:00

20 lines
462 B
Groovy

pipeline {
agent any
stages {
stage('CI') {
steps {
withChecks(name: 'Rust CI', includeStage: true) {
sh '''
set -e
which rustc
which cargo
rustc --version
cargo --version
make ci
'''
}
}
}
}
}