Initial step of running unit test in jenkins

This commit is contained in:
Ai Lin Chia
2017-06-14 11:25:45 +02:00
parent 96b45ef0ca
commit f6cbd070a2

6
Jenkinsfile vendored

@ -28,5 +28,11 @@ pipeline {
sh "make -j4 dist"
}
}
stage('Test') {
steps {
sh "make unittest"
}
}
}
}