feat: Jenkinsfile
gitea/double-pendulum/pipeline/head There was a failure building this commit

This commit is contained in:
2026-09-05 15:22:17 +02:00
parent 68145d9875
commit abcdfc8b00
Vendored
+13
View File
@@ -0,0 +1,13 @@
pipeline {
agent any
stages {
stage('Check') {
sh 'cargo check'
}
}
post {
cleanup {
cleanWs()
}
}
}