Il giorno giovedì 1 aprile 2021 alle 18:58:33 UTC+2 dorianl...@gmail.com ha 
scritto:

> 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 
> <http://github.com/org/monorepo/#%23p>'
>
> 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 <http://github.com/org/monorepo/#%23p>'
>
>
Not tested and it changes your global state/environment:

# Mark your monorepo as private.
go env -w GOPRIVATE=github.com/org/monorepo/

# Tell git to fetch each Go module from your local filesystem instead of 
https.
# $root is the root directory where your monorepo is stored.
git config --global "url.file://$root/github.com/org/monorepo/".insteadOf 
"https://github.com/org/monorepo/";

< [...]


Manlio

-- 
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/1c348e69-973c-4eb4-a590-80d1c1b5195cn%40googlegroups.com.

Reply via email to