update jenkinsfile

This commit is contained in:
bQUARKz 2026-04-07 09:30:16 +01:00
parent 56c59634b2
commit b07f2f377a
Signed by: bquarkz
SSH Key Fingerprint: SHA256:Z7dgqoglWwoK6j6u4QC87OveEq74WOhFN+gitsxtkf8

View File

@ -1,20 +1,22 @@
pipeline {
agent {
docker {
image 'rust:stable'
}
}
agent any
stages {
stage('Setup') {
steps {
giteaStatus status: 'PENDING', context: 'ci/jenkins'
sh 'rustup component add clippy rustfmt'
sh '''
set -e
rustup component add clippy rustfmt
'''
}
}
stage('CI') {
steps {
sh 'make ci'
sh '''
set -e
make ci
'''
}
}
}