Updated Jenkinsfile

This commit is contained in:
Carpentier Pierre-Francois 2017-04-25 09:44:28 +02:00
parent 5d56a8bad0
commit b06dd768d8
1 changed files with 4 additions and 4 deletions

8
Jenkinsfile vendored
View File

@ -4,25 +4,25 @@ pipeline {
stage('error') { stage('error') {
steps { steps {
parallel( parallel(
"OpenBSD": { "openbsd-6.1": {
git 'https://github.com/kakwa/uts-server' git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON' sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make' sh 'make'
}, },
"FreeBSD": { "freebsd-11": {
git 'https://github.com/kakwa/uts-server' git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON' sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make' sh 'make'
}, },
"CentOS 7": { "centos-7": {
git 'https://github.com/kakwa/uts-server' git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON' sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make' sh 'make'
}, },
"Debian 8": { "debian-8": {
git 'https://github.com/kakwa/uts-server' git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON' sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make' sh 'make'