bQUARKz 40536f4b30
Some checks failed
Rust CI / CI occurred while executing withChecks step.
update jenkinsfile
2026-04-07 09:39:58 +01:00

19 lines
450 B
Groovy

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