1
0
mirror of https://github.com/kakwa/uts-server synced 2025-01-09 21:24:29 +01:00

Updated Jenkinsfile

This commit is contained in:
Carpentier Pierre-Francois 2017-04-25 01:24:15 +02:00
parent 659152f2f2
commit 5d56a8bad0

8
Jenkinsfile vendored
View File

@ -6,18 +6,26 @@ pipeline {
parallel( parallel(
"OpenBSD": { "OpenBSD": {
git 'https://github.com/kakwa/uts-server' git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make'
}, },
"FreeBSD": { "FreeBSD": {
git 'https://github.com/kakwa/uts-server' git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
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 '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 'make'
} }
) )