From 823a32eebe0917ce82e35f18c294e57a24d44241 Mon Sep 17 00:00:00 2001 From: jamesread Date: Mon, 18 Oct 2021 09:35:48 +0100 Subject: [PATCH] gobin everywhere --- Jenkinsfile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 18cfa56..64efaf1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,13 +23,17 @@ pipeline { parallel { stage('Codestyle') { steps { - sh 'make daemon-codestyle' - sh 'make webui-codestyle' + withEnv(["PATH+GO=/root/go/bin/"]) { + sh 'make daemon-codestyle' + sh 'make webui-codestyle' + } } } stage('UnitTests') { steps { - sh 'make daemon-unittests' + withEnv(["PATH+GO=/root/go/bin/"]) { + sh 'make daemon-unittests' + } } } }