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 5d56a8bad0 Updated Jenkinsfile
2017-04-25 01:24:15 +02:00

35 lines
801 B
Groovy

pipeline {
agent any
stages {
stage('error') {
steps {
parallel(
"OpenBSD": {
git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make'
},
"FreeBSD": {
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'
}
)
}
}
}
}