Disallow parallelism in Makefile

This commit is contained in:
Mitchell Hashimoto 2017-02-17 15:31:20 -08:00
parent a2682bc94b
commit 4ed2a563ca
No known key found for this signature in database
GPG Key ID: 744E147AA52F5B0A
1 changed files with 5 additions and 0 deletions

View File

@ -104,4 +104,9 @@ errcheck:
vendor-status:
@govendor status
# disallow any parallelism (-j) for Make. This is necessary since some
# commands during the build process create temporary files that collide
# under parallel conditions.
.NOTPARALLEL:
.PHONY: bin core-dev core-test cover default dev errcheck fmt fmtcheck generate plugin-dev quickdev test-compile test testacc testrace tools vendor-status vet