gobin everywhere

This commit is contained in:
jamesread 2021-10-18 09:35:48 +01:00
parent 4e89b34ea4
commit 823a32eebe
1 changed files with 7 additions and 3 deletions

4
Jenkinsfile vendored
View File

@ -23,17 +23,21 @@ pipeline {
parallel { parallel {
stage('Codestyle') { stage('Codestyle') {
steps { steps {
withEnv(["PATH+GO=/root/go/bin/"]) {
sh 'make daemon-codestyle' sh 'make daemon-codestyle'
sh 'make webui-codestyle' sh 'make webui-codestyle'
} }
} }
}
stage('UnitTests') { stage('UnitTests') {
steps { steps {
withEnv(["PATH+GO=/root/go/bin/"]) {
sh 'make daemon-unittests' sh 'make daemon-unittests'
} }
} }
} }
} }
}
} }
} }