1
0
Fork 0
mirror of https://github.com/kakwa/uts-server synced 2025-07-03 12:07:02 +02:00

Updated Jenkinsfile

This commit is contained in:
Carpentier Pierre-Francois 2017-04-25 01:24:15 +02:00
parent 691d233c16
commit b87a07c961

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'
}
)