Add Jenkinsfile
Gitea Scan/plate-tool/pipeline/head This commit looks good Details

This commit is contained in:
Dan Allison 2023-12-30 22:32:17 -05:00
parent 95b81a7858
commit 5a76bd224e
1 changed files with 11 additions and 0 deletions

11
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Do nothing') {
steps {
sh '/bin/true'
}
}
}
}