bQUARKz 78f087ec13
Some checks failed
Rust CI / CI occurred while executing withChecks step.
update jenkinsfile
2026-04-07 09:41:55 +01:00

18 lines
390 B
Groovy

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