Fix build
cacert-boardvoting/pipeline/head This commit looks good Details

main
Jan Dittberner 2 years ago
parent c2eef9cf7c
commit 41965ca076

4
Jenkinsfile vendored

@ -41,13 +41,13 @@ pipeline {
stage('Build') {
when { not { branch 'debian' } }
steps {
sh label: 'Build binary', script: 'make distclean && make'
sh label: 'Build binary', script: 'make clean && make'
}
}
stage('Test') {
when { not { branch 'debian' } }
steps {
sh label: 'Run tests', script: 'go test -v ./...'
sh label: 'Run tests', script: 'make test'
}
}
stage('Create build output') {

@ -22,4 +22,4 @@ ui: ${UIFILES}
npm install
cd node_modules/fomantic-ui ; npx gulp build
.PHONY: clean all ui test
.PHONY: clean all ui test lint
Loading…
Cancel
Save