Add 'Jenkinsfile'

Setting this up to see in Jenkins picks it up
This commit is contained in:
Ryonia Coruscare 2019-12-11 01:15:38 +13:00
parent 3b48bbfa8c
commit 2e6428382a

11
Jenkinsfile vendored Normal file
View file

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