uts-server/Jenkinsfile

23 lines
420 B
Plaintext
Raw Normal View History

2017-04-23 18:10:40 +02:00
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'
}
)
}
}
}
}