Making two different go
modules
source.cloud.google.com/me/a
source.cloud.google.com/me/b
With source.cloud.google.com/me/common
as a common lib dependency (to share a model)
I'm trying to go get source.cloud.google.com/me/common
(even manually wrote it in the go.mod
file) but I keep receiving the following error:
package source.cloud.google.com/me/common:
unrecognized import path "source.cloud.google.com/me/common"
(parse https://source.cloud.google.com/me/common?go-get=1: no go-import meta tags ())
I have gcloud
set up to be able to use app deploy
and create new source repositories. I've tried setting up ssh
for google cloud and attempted to use manual credentials. This neither works locally or in the google cloud build service.
I want to do two things:
go get
this dependencsource.cloud.google.com/me/common
go get
into my App Engine automated build pipeline.Any help would be appreciated.
common
module should go like source.developers.google.com/p/m/r/common.git
go get source.developers.google.com/p/m/r/common.git
on the other moduleI would try the following steps:
For example - refer any github go module, you can see the "go-import" meta tag:
In order to fix it, the VCS server needs to respond with this tag when go get
tries to download "common" module
<meta name="go-import" content="source.cloud.google.com/me/common git https:source.cloud.google.com/me/common">
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With