Do not build in parallel

This commit is contained in:
Victor LABORIE 2019-03-21 16:03:56 +01:00
parent 474e458845
commit fb32697171

View file

@ -3,13 +3,13 @@
.PHONY: evolinux packmail clean .PHONY: evolinux packmail clean
evolinux: evolinux:
./scripts/make_template evolinux | PACKER_CACHE_DIR='build/packer' packer build - ./scripts/make_template evolinux | PACKER_CACHE_DIR='build/packer' packer build -parallel=false -
packmail: packmail:
./scripts/make_template packmail | PACKER_CACHE_DIR='build/packer' packer build - ./scripts/make_template packmail | PACKER_CACHE_DIR='build/packer' packer build -parallel=false -
packweb: packweb:
./scripts/make_template packweb | PACKER_CACHE_DIR='build/packer' packer build - ./scripts/make_template packweb | PACKER_CACHE_DIR='build/packer' packer build -parallel=false -
clean: clean:
rm -rf build/* rm -rf build/*