1
0
mirror of https://github.com/kakwa/uts-server synced 2024-06-08 03:57:49 +02:00

Added Jenkinsfile

This commit is contained in:
Carpentier Pierre-Francois 2017-04-23 18:10:40 +02:00
parent f39a27c7e5
commit 10227c5fd0

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'
}
)
}
}
}
}