From f6230c9c0f8922619e25091494fd02de145e136d Mon Sep 17 00:00:00 2001 From: kakwa Date: Thu, 27 Apr 2017 22:28:31 +0200 Subject: [PATCH] Mooooorrreeee ENV variables... --- Jenkinsfile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7d65b4a..6ade80b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,8 +10,8 @@ pipeline { sh 'git config --global user.email "jenkins@kakwa.fr"' git 'https://github.com/kakwa/uts-server' sh 'git clean -fdx' - sh 'export CC=/usr/local/bin/egcc;export CXX=/usr/local/bin/ec++; cmake . -DBUNDLE_CIVETWEB=ON' - sh 'export CC=/usr/local/bin/egcc;export CXX=/usr/local/bin/ec++; make -j4' + 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' sh './tests/cfg/pki/create_tsa_certs' sh './tests/external_test.sh' } @@ -21,8 +21,8 @@ pipeline { sh 'git config --global user.email "jenkins@kakwa.fr"' sh 'git config --global user.name "jenkins@kakwa.fr"' git 'https://github.com/kakwa/uts-server' - sh 'git clean -fdx' - sh 'cmake . -DBUNDLE_CIVETWEB=ON' + 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' sh 'make -j4' sh './tests/cfg/pki/create_tsa_certs' sh './tests/external_test.sh' @@ -34,8 +34,8 @@ pipeline { sh 'git config --global user.name "jenkins@kakwa.fr"' git 'https://github.com/kakwa/uts-server' sh 'git clean -fdx' - sh 'export CXX=/usr/bin/clang++; export CC=/usr/bin/clang; cmake . -DBUNDLE_CIVETWEB=ON' - sh 'export CXX=/usr/bin/clang++; export CC=/usr/bin/clang; make -j4' + 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' sh './tests/cfg/pki/create_tsa_certs' sh './tests/external_test.sh' } @@ -46,8 +46,8 @@ pipeline { sh 'git config --global user.name "jenkins@kakwa.fr"' git 'https://github.com/kakwa/uts-server' sh 'git clean -fdx' - sh 'cmake . -DBUNDLE_CIVETWEB=ON' - sh 'make -j4' + 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' sh './tests/cfg/pki/create_tsa_certs' sh './tests/external_test.sh' }