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 b06dd768d8 Updated Jenkinsfile
2017-04-25 09:44:28 +02:00

35 lines
808 B
Groovy

pipeline {
agent any
stages {
stage('error') {
steps {
parallel(
"openbsd-6.1": {
git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make'
},
"freebsd-11": {
git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make'
},
"centos-7": {
git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make'
},
"debian-8": {
git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make'
}
)
}
}
}
}