update jenkinsfile
Some checks failed
Rust CI / CI occurred while executing withChecks step.

This commit is contained in:
bQUARKz 2026-04-07 10:07:25 +01:00
parent da48c8b116
commit 87c51ba8fc
Signed by: bquarkz
SSH Key Fingerprint: SHA256:Z7dgqoglWwoK6j6u4QC87OveEq74WOhFN+gitsxtkf8

View File

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