jenkins
All checks were successful
Gitea/jean-cloud_website/master This commit looks good

This commit is contained in:
Adrian Amaglio 2019-08-20 18:25:58 +02:00
parent e4e914f7b5
commit da1f515635

11
Jenkinsfile vendored Normal file
View File

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