bQUARKz da48c8b116
Some checks failed
Rust CI / CI occurred while executing withChecks step.
update jenkinsfile
2026-04-07 09:44:52 +01:00

22 lines
473 B
Groovy

pipeline {
agent any
environment {
PATH = "/var/jenkins_home/.cargo/bin:${env.PATH}"
}
stages {
stage('CI') {
steps {
withChecks(name: 'Rust CI', includeStage: true) {
sh '''
set -e
rustc --version
cargo --version
make ci
'''
}
}
}
}
}