Added Jenkinsfile

This commit is contained in:
Carpentier Pierre-Francois 2017-04-23 18:10:40 +02:00
parent 73a8a851a9
commit 6cddc0e2a3
1 changed files with 23 additions and 0 deletions

23
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,23 @@
pipeline {
agent any
stages {
stage('') {
steps {
parallel(
"OpenBSD": {
git 'https://github.com/kakwa/uts-server'
},
"FreeBSD": {
git 'https://github.com/kakwa/uts-server'
},
"CentOS 7": {
git 'https://github.com/kakwa/uts-server'
}
)
}
}
}
}