From 1fc071b0e318dc22eb18bff7d2dce716cf43e669 Mon Sep 17 00:00:00 2001 From: Michael Shaw Date: Mon, 10 Oct 2022 11:42:54 -0400 Subject: [PATCH] bypass Makefile and run go test command explicitly --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bda85a898..720782d02 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,8 +39,8 @@ pipeline { echo 'Testing ...' sh 'env' sh 'go env' - sh 'go get -t ./...' - sh 'make test' + sh '/usr/local/go/bin/go test -p 1 -v ./...' + //sh 'make test' } } stage('Packaging') {