Files
double-pendulum/Jenkinsfile
T
flip fbd8c9f990
gitea/double-pendulum/pipeline/head This commit looks good
build: Fix van Jenkinsfile check
2026-09-05 15:27:50 +02:00

16 lines
187 B
Groovy

pipeline {
agent any
stages {
stage('Check') {
steps {
sh 'cargo check'
}
}
}
post {
cleanup {
cleanWs()
}
}
}