Files
double-pendulum/Jenkinsfile
T
flip abcdfc8b00
gitea/double-pendulum/pipeline/head There was a failure building this commit
feat: Jenkinsfile
2026-09-05 15:22:17 +02:00

14 lines
175 B
Groovy

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