1
0
mirror of https://github.com/kakwa/uts-server synced 2025-01-09 05:04:29 +01:00
uts-server/Jenkinsfile
kakwa 313ae1a009 Revert "setting compiler for OpenBSD in jenkins file"
This reverts commit 29fa326a0adf2d053b0eba3dc4df3cd8ffb85535.
2017-04-25 10:17:46 +02:00

40 lines
969 B
Groovy

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