uts-server/Jenkinsfile

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