From 41965ca076ff29627125dfcce6bf1343eba2b4d1 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Sat, 15 Oct 2022 20:04:03 +0200 Subject: [PATCH] Fix build --- Jenkinsfile | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c285164..320c283 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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') { diff --git a/Makefile b/Makefile index 81bf542..508cd9d 100644 --- a/Makefile +++ b/Makefile @@ -22,4 +22,4 @@ ui: ${UIFILES} npm install cd node_modules/fomantic-ui ; npx gulp build -.PHONY: clean all ui test \ No newline at end of file +.PHONY: clean all ui test lint \ No newline at end of file