uts-server/Jenkinsfile

60 lines
2.9 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') {
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 20:19:49 +02:00
sh 'git clean -fdx'
2017-04-27 22:28:31 +02:00
sh 'export GIT_SSL_NO_VERIFY=true; CIVETWEB_GITURL=https://gogs.kakwa.fr/kakwa/civetweb/; export CC=/usr/local/bin/egcc;export CXX=/usr/local/bin/ec++; cmake . -DBUNDLE_CIVETWEB=ON'
sh 'export GIT_SSL_NO_VERIFY=true; CIVETWEB_GITURL=https://gogs.kakwa.fr/kakwa/civetweb/; export CC=/usr/local/bin/egcc;export CXX=/usr/local/bin/ec++; make -j4'
2017-04-27 22:05:56 +02:00
sh './tests/cfg/pki/create_tsa_certs'
sh './tests/external_test.sh'
2017-04-25 09:58:11 +02:00
}
2017-04-23 18:10:40 +02:00
},
2017-04-25 09:58:11 +02:00
"FreeBSD 11": {
node('freebsd-11') {
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'
2017-04-27 22:28:31 +02:00
sh 'export GIT_SSL_NO_VERIFY=true; CIVETWEB_GITURL=https://gogs.kakwa.fr/kakwa/civetweb/;git clean -fdx'
sh 'export GIT_SSL_NO_VERIFY=true; CIVETWEB_GITURL=https://gogs.kakwa.fr/kakwa/civetweb/;cmake . -DBUNDLE_CIVETWEB=ON'
2017-04-27 21:56:22 +02:00
sh 'make -j4'
2017-04-27 22:05:56 +02:00
sh './tests/cfg/pki/create_tsa_certs'
sh './tests/external_test.sh'
2017-04-25 09:58:11 +02:00
}
2017-04-23 18:10:40 +02:00
},
2017-04-25 09:58:11 +02:00
"CentOS 7": {
node('centos-7') {
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'
2017-04-27 20:19:49 +02:00
sh 'git clean -fdx'
2017-04-27 22:28:31 +02:00
sh 'export GIT_SSL_NO_VERIFY=true; CIVETWEB_GITURL=https://gogs.kakwa.fr/kakwa/civetweb/; export CXX=/usr/bin/clang++; export CC=/usr/bin/clang; cmake . -DBUNDLE_CIVETWEB=ON'
sh 'export GIT_SSL_NO_VERIFY=true; CIVETWEB_GITURL=https://gogs.kakwa.fr/kakwa/civetweb/; export CXX=/usr/bin/clang++; export CC=/usr/bin/clang; make -j4'
2017-04-27 22:05:56 +02:00
sh './tests/cfg/pki/create_tsa_certs'
sh './tests/external_test.sh'
2017-04-25 09:58:11 +02:00
}
2017-04-25 01:12:04 +02:00
},
2017-04-25 09:58:11 +02:00
"Debian 8": {
node('debian-8') {
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'
2017-04-27 20:19:49 +02:00
sh 'git clean -fdx'
2017-04-27 22:28:31 +02:00
sh 'export GIT_SSL_NO_VERIFY=true; CIVETWEB_GITURL=https://gogs.kakwa.fr/kakwa/civetweb/; cmake . -DBUNDLE_CIVETWEB=ON'
sh 'export GIT_SSL_NO_VERIFY=true; CIVETWEB_GITURL=https://gogs.kakwa.fr/kakwa/civetweb/; make -j4'
2017-04-27 22:05:56 +02:00
sh './tests/cfg/pki/create_tsa_certs'
sh './tests/external_test.sh'
2017-04-25 09:58:11 +02:00
}
2017-04-23 18:10:40 +02:00
}
)
}
}
}
2017-04-25 09:58:11 +02:00
}