Testing Jenkinsfile
Gitea/webhook-testing/pipeline/head This commit looks good Details

testing
jenkins 2022-02-16 21:32:32 +00:00
parent 1f2305a6fe
commit 8d507ae7d3
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'
}
}
}
}