cool-easter-32542
04/18/2023, 10:03 PM//go:build sometimes
package foo
The go compiler will only include that file in the build if I specify the sometimes build tag:
$ go build -tags=sometimes ./...
I couldn't see a way to specify the -tags flag, so this might be a feature request. But figured I'd make a discussion first, in case I missed how to do it.
pantsbuild/pants