Added Jenkinsfile

This commit is contained in:
William
2018-12-05 08:36:21 +11:00
parent 307886d4ae
commit b0a608b5cd

11
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,11 @@
pipeline {
agent any
stages {
stage('Get coriolis-data') {
steps {
sh '''cd ..
git clone https://github.com/edcd/coriolis-data.git'''
}
}
}
}