clixon/test/Jenkinsfile
Olof hagsand 85c4782e36 Dedicated xml,json,yang and xsl parser utility programs added
Sanity check of stdarg (...) added
Cleanup of error messages.
2018-06-17 19:40:06 +02:00

25 lines
559 B
Groovy

node {
stage('Checkout') {
git url: 'https://github.com/clicon/clixon.git'
checkout scm
}
stage('Configure') {
/* `make check` returns non-zero on test failures,
* using `true` to allow the Pipeline to continue nonetheless
*/
sh 'make clean'
sh './configure'
}
stage('Make') {
/* `make check` returns non-zero on test failures,
* using `true` to allow the Pipeline to continue nonetheless
*/
sh 'make'
}
stage('Testing') {
}
}