Skip to content

Commit

Permalink
Disallow parallelism in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchellh committed Feb 17, 2017
1 parent a2682bc commit 4ed2a56
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 4ed2a56

Please sign in to comment.