Updated Jenkinsfile

This commit is contained in:
Carpentier Pierre-Francois 2017-04-25 01:24:15 +02:00
parent 659152f2f2
commit 5d56a8bad0
1 changed files with 8 additions and 0 deletions

8
Jenkinsfile vendored
View File

@ -6,18 +6,26 @@ pipeline {
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'
}
)