Fix build
All checks were successful
cacert-boardvoting/pipeline/head This commit looks good

This commit is contained in:
Jan Dittberner 2022-10-15 20:04:03 +02:00
parent c2eef9cf7c
commit 41965ca076
2 changed files with 3 additions and 3 deletions

4
Jenkinsfile vendored
View file

@ -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') {

View file

@ -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