aboutsummaryrefslogtreecommitdiffhomepage
path: root/magefile.go
diff options
context:
space:
mode:
Diffstat (limited to 'magefile.go')
-rw-r--r--magefile.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/magefile.go b/magefile.go
index 6d5572232..3800f49b6 100644
--- a/magefile.go
+++ b/magefile.go
@@ -94,7 +94,10 @@ func Docker() error {
// Run tests and linters
func Check() {
- mg.Deps(TestRace, Test386, Fmt, Vet)
+ mg.Deps(Test386, Fmt, Vet)
+ // don't run two tests in parallel, they saturate the CPUs anyway, and running two
+ // causes memory issues in CI.
+ mg.Deps(TestRace)
}
// Run tests in 32-bit mode