modules: Add modules.Workspace config for Go 1.18
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 18 Feb 2022 11:43:59 +0000 (12:43 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 18 Feb 2022 14:06:58 +0000 (15:06 +0100)
Sets `GOWORK` env var for Go 1.18.

Fixes #9525

docs/content/en/hugo-modules/configuration.md
modules/client.go
modules/config.go

index fc57f774ff509bfb28ffa50c8a48457f535f3133..73bb0eb4f2d97bbb76f127f2a24f67bc9e9e73ab 100644 (file)
@@ -23,6 +23,7 @@ proxy = "direct"
 noProxy = "none"
 private = "*.*"
 replacements = ""
+workspace = ""
 {{< /code-toggle >}}
 
 
@@ -41,6 +42,9 @@ noProxy
 private
 : Comma separated glob list matching paths that should be treated as private.
 
+workspace {{< new-in "0.83.0" >}}
+The workspace file to use. This enables Go workspace mode. Note that this can also be set via OS env, e.g. `export HUGO_MODULE_WORKSPACE=/my/hugo.work` This only works with Go 1.18+.
+
 replacements {{< new-in "0.77.0" >}}
 : A comma separated (or a slice) list of module path to directory replacement mapping, e.g. `github.com/bep/myprettytheme -> ../..,github.com/bep/shortcodes -> /some/path`. This is mostly useful for temporary locally development of a module, and then it makes sense to set it as an OS environment variable, e.g: `env HUGO_MODULE_REPLACEMENTS="github.com/bep/myprettytheme -> ../.."`. Any relative path is relate to [themesDir](https://gohugo.io/getting-started/configuration/#all-configuration-settings), and absolute paths are allowed.
 
index 17e149ecfb8379dc6734a9b259179746f236752c..fe0abc46256f5418558a1c8a215aedf83eb8fbc0 100644 (file)
@@ -90,6 +90,7 @@ func NewClient(cfg ClientConfig) *Client {
                "GOPRIVATE", mcfg.Private,
                "GONOPROXY", mcfg.NoProxy,
                "GOPATH", cfg.CacheDir,
+               "GOWORK", mcfg.Workspace, // Requires Go 1.18, see https://tip.golang.org/doc/go1.18
                // GOCACHE was introduced in Go 1.15. This matches the location derived from GOPATH above.
                "GOCACHE", filepath.Join(cfg.CacheDir, "pkg", "mod"),
        )
index ac9eadd37a1ddaf9c23e334f06fe935ecdd685fb..4b39636cd677362ddb81f259d86212ea49844972 100644 (file)
@@ -295,6 +295,12 @@ type Config struct {
        NoProxy string
        // Configures GOPRIVATE.
        Private string
+
+       // Set the workspace file to use, e.g. hugo.work.
+       // Enables Go "Workspace" mode.
+       // Requires Go 1.18+
+       // See https://tip.golang.org/doc/go1.18
+       Workspace string
 }
 
 // hasModuleImport reports whether the project config have one or more