1
0
mirror of https://github.com/kakwa/uts-server synced 2024-12-04 23:15:54 +01:00
uts-server/Jenkinsfile
Carpentier Pierre-Francois 6cddc0e2a3 Added Jenkinsfile
2017-04-23 18:10:40 +02:00

23 lines
420 B
Groovy

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