From ec380e320a9f884d1699115ab828b0c3b06a595f Mon Sep 17 00:00:00 2001 From: kakwa Date: Thu, 27 Apr 2017 22:05:56 +0200 Subject: [PATCH] adding test steps --- Jenkinsfile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index a9889f5..891df57 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -12,6 +12,8 @@ pipeline { 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 './tests/cfg/pki/create_tsa_certs' + sh './tests/external_test.sh' } }, "FreeBSD 11": { @@ -22,6 +24,8 @@ pipeline { sh 'git clean -fdx' sh 'cmake . -DBUNDLE_CIVETWEB=ON' sh 'make -j4' + sh './tests/cfg/pki/create_tsa_certs' + sh './tests/external_test.sh' } }, "CentOS 7": { @@ -32,6 +36,8 @@ pipeline { 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 './tests/cfg/pki/create_tsa_certs' + sh './tests/external_test.sh' } }, "Debian 8": { @@ -42,6 +48,8 @@ pipeline { sh 'git clean -fdx' sh 'cmake . -DBUNDLE_CIVETWEB=ON' sh 'make -j4' + sh './tests/cfg/pki/create_tsa_certs' + sh './tests/external_test.sh' } } )