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' } } )