Reputation: 61
When deploying my Go services to Google AppEngine (standard), I receive an errors describing a module version not being found, while everything compiles fine.
The modules are on a private Github instance and checked out to vendor/
.
A go build -mod vendor -o /dev/null ./...
works in cloud-build-local, locally and in Google Cloud Build.
A tag called 'v1.1.0' exists on github.com/company/gosystem:
gosystem$ git tag
v0.0.1
v0.0.2
v0.0.3
v1.0.0
v1.1.0
Failed to build app: [go build -o /tmp/staging172777881/usr/local/bin/start .] with env [PATH=/go/bin:/usr/local/go/bin:/builder/google-cloud-sdk/bin/:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin HOSTNAME=f3f56ce621f0 HOME=/builder/home BUILDER_OUTPUT=/builder/outputs DEBIAN_FRONTEND=noninteractive GOROOT=/usr/local/go/ GOPATH=/go GO111MODULE=on GOCACHE=/tmp/cache019702820 GOPATH=/go] failed: err=exit status 1, out="
go: finding github.com/pquerna/otp v1.1.0
go: finding github.com/gin-gonic/gin v1.4.0
go: finding github.com/pkg/errors v0.8.1
go: finding github.com/rainycape/unidecode v0.0.0-20150907023854-cb7f23ec59be
go: finding github.com/gosimple/slug v1.5.0
go: finding github.com/boombuler/barcode v1.0.0
go: finding github.com/company/gosystem v1.1.0
go: finding github.com/oblq/i18n v0.0.0-20181031085821-98eec2978e00
go: finding github.com/go-pg/pg v8.0.4+incompatible
go: finding golang.org/x/text v0.3.2
go: finding github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: finding github.com/modern-go/reflect2 v1.0.1
go: finding github.com/golang/protobuf v1.3.1
go: finding github.com/stretchr/testify v1.3.0
go: finding github.com/ugorji/go/codec v0.0.0-20190204201341-e444a5086c43
go: finding github.com/gin-contrib/sse v0.0.0-20190301062529-5545eab6dad3
go: finding github.com/mattn/go-isatty v0.0.7
go: github.com/company/[email protected]: unknown revision v1.1.0
A grep -RI 'gosystem@' *
reports nothing.
Upvotes: 4
Views: 8816
Reputation: 61
In the end I was able to make this work by forcing go to use vendor
, by adding this to the go.mod
:
replace github.com/company/gosystem => ./vendor/github.com/company/gosystem
Upvotes: 2
Reputation: 21937
Go uses https to fetch versions/dependencies. Even if you use vendor, Go will verify the version anyway. And since github.com/venclave/gosystem
is a private repo, git can't get access to it.
There are few workarounds for this.
1 - Use ssh:
git config --global url.ssh://[email protected]/venclave.insteadOf https://github.com/venclave
2 - Use GitHub token:
Generate GITHUB_TOKEN here https://github.com/settings/tokens.
export GITHUB_TOKEN=xxx
git config --global url."https://${GITHUB_TOKEN}:[email protected]/venclave".insteadOf "https://github.com/venclave"
Upvotes: 1