QA CI: Put /usr/local/go/bin in PATH

The CI setup scripts may (likely will) install the correct
version of golang into /usr/local/go/* when run. Ensure
we have that in our PATH before the system default go,
else the build will likely fail (due to using the wrong
go version).

The modification is in two places (playbook and role/task),
as afaict there is no mechanism to set an ansible style
`environment` at a higher level, such as the higher level
Zuul jobs.yaml file, that will then persist across all
sub-execution units. We could maybe place the required PATH
into a var, and use that to set the PATH in the lower down
items *if* maintenance becomes too much of a burden.

Change-Id: I34205d5c4397d730eaf266122591140e0647b49b
Signed-off-by: Graham Whaley <graham.whaley@intel.com>
This commit is contained in:
Graham Whaley 2019-04-18 11:17:15 +01:00
parent 532de2e94b
commit 31c8ee102b
2 changed files with 2 additions and 2 deletions

View File

@ -10,5 +10,5 @@
export CI=true
export ZUUL=true
export GOPATH=$HOME/go
export PATH=${GOPATH}/bin:/usr/sbin:$PATH
export PATH=${GOPATH}/bin:/usr/local/go/bin:/usr/sbin:$PATH
.ci/run.sh

View File

@ -18,6 +18,6 @@
export GOPATH=$HOME/go
export CI=true
export ZUUL=true
export PATH=${GOPATH}/bin:/usr/sbin:$PATH
export PATH=${GOPATH}/bin:/usr/local/go/bin:/usr/sbin:$PATH
.ci/install_go.sh -p -f
.ci/setup.sh