You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kompass/Jenkinsfile

22 lines
380 B
Groovy

node {
checkout scm
}
pipeline {
agent any
stages {
stage('Build') {
steps {
sh "make build-test"
}
}
stage('Test') {
steps {
sh "make test"
recordCoverage(tools: [[parser: 'COBERTURA', pattern: 'docker/test/coverage.xml']])
}
}
}
}