Fix mage vs make issues

And remove Makefile ... for good.

Fixes #3969
This commit is contained in:
Bjørn Erik Pedersen
2017-10-18 07:56:10 +02:00
parent 5109ed520f
commit ad5ef43838
3 changed files with 7 additions and 90 deletions

View File

@@ -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