From: Bjørn Erik Pedersen Date: Fri, 21 Nov 2025 10:00:50 +0000 (+0100) Subject: github: Remove the 386 test step in GitHub test workflow X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b971b7f91192e5e689a2a66396a287ce895e146b;p=brevno-suite%2Fhugo github: Remove the 386 test step in GitHub test workflow Fixes #14201 --- diff --git a/magefile.go b/magefile.go index 0a92ca86d..0f86236b0 100644 --- a/magefile.go +++ b/magefile.go @@ -145,15 +145,6 @@ func Docker() error { // Run tests and linters func Check() { - if runtime.GOARCH == "amd64" && runtime.GOOS != "darwin" { - mg.Deps(Test386) - if isCI() { - mg.Deps(CleanTest, UninstallAll) - } - } else { - fmt.Printf("Skip Test386 on %s and/or %s\n", runtime.GOARCH, runtime.GOOS) - } - if isCI() && isDarwin() { // Skip on macOS in CI (disk space issues) } else {