diff options
author | Bjørn Erik Pedersen <[email protected]> | 2022-05-27 10:06:45 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2022-05-27 11:55:03 +0200 |
commit | 52edea0feccf98700300e98567c5a2ada7604c89 (patch) | |
tree | e09d89d3126aa910eb949331cfe244d3a5e02dba /magefile.go | |
parent | 6a5acd753abbd899547c89b369de71df639cce19 (diff) | |
download | hugo-52edea0feccf98700300e98567c5a2ada7604c89.tar.gz hugo-52edea0feccf98700300e98567c5a2ada7604c89.zip |
github: Set HUGO_BUILD_TAGS: extended when running tests
Also fix TestDecodeConfig/Basic which started to fail in the extended build in 0.99.1.
Closes #9935
Diffstat (limited to 'magefile.go')
-rw-r--r-- | magefile.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/magefile.go b/magefile.go index b63576c3c..b2dc54777 100644 --- a/magefile.go +++ b/magefile.go @@ -144,13 +144,6 @@ func Docker() error { // Run tests and linters func Check() { - if strings.Contains(runtime.Version(), "1.8") { - // Go 1.8 doesn't play along with go test ./... and /vendor. - // We could fix that, but that would take time. - fmt.Printf("Skip Check on %s\n", runtime.Version()) - return - } - if runtime.GOARCH == "amd64" && runtime.GOOS != "darwin" { mg.Deps(Test386) } else { |