You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I have some conditional dependencies (i.e. ones that are defined in files that are build only on e.g. linux), and I run glock save on a system where those conditional dependencies are not required, my GLOCKFILE will not include all possible dependencies of my project.
This has implications when developing on OS X and running CI on linux.
A cursory look at the glock code reveals that we're currently shelling out to go list, which I don't think allows specifying build tags, but we should really be using the go/build package anyway, and specifying the union of (at least) all OS build tags when resolving dependencies.
The text was updated successfully, but these errors were encountered:
go list does accept -tags', but since+build` directives can be both positive and negative simply specifying the union of all known build tags won't necessarily pick up everything (i'm not sure if it would work in the case we're running into; I haven't pulled on that thread to see where exactly the problematic dependency comes from)
If I have some conditional dependencies (i.e. ones that are defined in files that are build only on e.g. linux), and I run
glock save
on a system where those conditional dependencies are not required, my GLOCKFILE will not include all possible dependencies of my project.This has implications when developing on OS X and running CI on linux.
A cursory look at the glock code reveals that we're currently shelling out to
go list
, which I don't think allows specifying build tags, but we should really be using thego/build
package anyway, and specifying the union of (at least) all OS build tags when resolving dependencies.The text was updated successfully, but these errors were encountered: