Skip to content

Fix CI image build

Steve Xuereb requested to merge fix-building-ci-image into master

What does this MR do?

Fix CI image build

Why was this MR needed?

The CI image is failing to build with the following error:

go: warning: "./..." matched no packages
can't load package: package github.com/mitchellh/gox: cannot find package "github.com/mitchellh/gox" in any of:
  /usr/local/go/src/github.com/mitchellh/gox (from $GOROOT)
  /go/src/github.com/mitchellh/gox (from $GOPATH)
make: *** [Makefile:267: gox] Error 1

This is becuase we have go install instead of go get, go install expect the image to be already present.

Does this MR meet the acceptance criteria?

  • Documentation created/updated
  • Added tests for this feature/bug
  • In case of conflicts with master - branch was rebased

What are the relevant issue numbers?

Merge request reports