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

10
Jenkinsfile vendored
View File

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