From 5d56a8bad06eb73e67e09ee085c188c8e9c834b6 Mon Sep 17 00:00:00 2001 From: Carpentier Pierre-Francois Date: Tue, 25 Apr 2017 01:24:15 +0200 Subject: [PATCH] Updated Jenkinsfile --- Jenkinsfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 0643a2f..43eb323 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' } )