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 { pipeline {
agent { agent any
docker {
image 'rust:stable'
}
}
stages { stages {
stage('Setup') { stage('Setup') {
steps { steps {
giteaStatus status: 'PENDING', context: 'ci/jenkins' giteaStatus status: 'PENDING', context: 'ci/jenkins'
sh 'rustup component add clippy rustfmt' sh '''
set -e
rustup component add clippy rustfmt
'''
} }
} }
stage('CI') { stage('CI') {
steps { steps {
sh 'make ci' sh '''
set -e
make ci
'''
} }
} }
} }