Hi all,

We have a monorepo with a bunch of services in it.
Currently, in Go 1.16, I'm able to build each service using "docker build 
-" and generating the tar context "by hand" using something like: go list 
-deps ./services/s1 | sed -n 's#^github.com/org/monorepo/##p'

It works fine locally (as always) but when I started using Github Actions 
to run the build script I saw something peculiar: "go list -deps" was 
downloading packages

After looking around I saw that this is the expected behavior.
Though I would prefer to have a flag so "go list" could work offline, I 
figure out that using the following command did solved my issue:
GO111MODULE=off go list -deps ./services/s1 2> /dev/null | sed -n 
's#^github.com/org/monorepo/##p'

Setting GO111MODULE to "off" gave me what I want! \o/
But then I remembered that Go 1.16 release notes did mentioned: "Go 1.17 
will ignore GO111MODULE"

So, when Go 1.17 arrives I will need another solution.
Do you guys have any idea of a better way of getting the list of local 
package dependencies for a package (all this only inside that monorepo)?

Cheers,
Dórian 

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/35212ee7-f144-4269-baa2-8b6d67667fean%40googlegroups.com.

Reply via email to