1
0
mirror of https://github.com/kakwa/uts-server synced 2025-01-09 13:14:31 +01:00
uts-server/Jenkinsfile

48 lines
1.4 KiB
Plaintext
Raw Normal View History

2017-04-23 18:10:40 +02:00
pipeline {
2017-04-25 09:58:11 +02:00
agent none
2017-04-23 18:10:40 +02:00
stages {
2017-04-25 09:58:11 +02:00
stage('Compile') {
2017-04-23 18:10:40 +02:00
steps {
parallel(
2017-04-25 09:58:11 +02:00
"OpenBSD 6.1": {
node('openbsd-6.1') {
2017-04-27 19:53:31 +02:00
sh 'git config --global user.name "jenkins@kakwa.fr"'
sh 'git config --global user.email "jenkins@kakwa.fr"'
2017-04-25 09:58:11 +02:00
git 'https://github.com/kakwa/uts-server'
2017-04-27 19:48:37 +02:00
sh 'CC=/usr/local/bin/egcc CXX=/usr/local/bin/ec++ cmake . -DBUNDLE_CIVETWEB=ON'
2017-04-25 09:58:11 +02:00
sh 'make'
}
2017-04-23 18:10:40 +02:00
},
2017-04-25 09:58:11 +02:00
"FreeBSD 11": {
node('freebsd-11') {
2017-04-27 19:53:31 +02:00
sh 'git config --global user.email "jenkins@kakwa.fr"'
sh 'git config --global user.name "jenkins@kakwa.fr"'
2017-04-25 09:58:11 +02:00
git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make'
}
2017-04-23 18:10:40 +02:00
},
2017-04-25 09:58:11 +02:00
"CentOS 7": {
node('centos-7') {
2017-04-27 19:53:31 +02:00
sh 'git config --global user.email "jenkins@kakwa.fr"'
sh 'git config --global user.name "jenkins@kakwa.fr"'
2017-04-25 09:58:11 +02:00
git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make'
}
2017-04-25 01:12:04 +02:00
},
2017-04-25 09:58:11 +02:00
"Debian 8": {
node('debian-8') {
2017-04-27 19:53:31 +02:00
sh 'git config --global user.email "jenkins@kakwa.fr"'
sh 'git config --global user.name "jenkins@kakwa.fr"'
2017-04-25 09:58:11 +02:00
git 'https://github.com/kakwa/uts-server'
sh 'cmake . -DBUNDLE_CIVETWEB=ON'
sh 'make'
}
2017-04-23 18:10:40 +02:00
}
)
}
}
}
2017-04-25 09:58:11 +02:00
}