remove xml x_cv; added makes to jenkinsfile

This commit is contained in:
Olof hagsand 2018-06-17 23:09:36 +02:00
parent 5a8660afb6
commit 5304acb086
3 changed files with 14 additions and 46 deletions

17
test/Jenkinsfile vendored
View file

@ -18,8 +18,19 @@ node {
*/
sh 'make'
}
stage('Testing') {
stage('Make install') {
sh 'make install'
}
stage('Make install-include') {
sh 'make install-include'
}
stage('Make Example') {
sh 'cd example'
sh 'make'
sh 'sudo make install'
}
stage('Testing') {
sh 'cd test'
sh './all.sh'
}
}