adding test steps

This commit is contained in:
kakwa 2017-04-27 22:05:56 +02:00
parent c67509fd5b
commit ec380e320a
1 changed files with 8 additions and 0 deletions

8
Jenkinsfile vendored
View File

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