Added Jenkinsfile

This commit is contained in:
Carpentier Pierre-Francois 2017-04-23 18:10:40 +02:00
parent f39a27c7e5
commit 10227c5fd0
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'
}
)
}
}
}
}