From ee5e47de638ce529ae397fea33729bbffd9ac0ae Mon Sep 17 00:00:00 2001 From: Ced Date: Wed, 29 May 2024 16:57:51 +0100 Subject: [PATCH] Revert "Remove parallel option from make (#368)" This reverts commit 3d16d58817aebc7eef791a1a20cd18e4e2bd2ee9. There is no reason for parallel build to fail --- .github/workflows/release-book-website.yml | 2 +- makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-book-website.yml b/.github/workflows/release-book-website.yml index 489f1a9..a64be90 100644 --- a/.github/workflows/release-book-website.yml +++ b/.github/workflows/release-book-website.yml @@ -64,7 +64,7 @@ jobs: options: -v ${{ github.workspace }}:/app run: | cd /app/book - make bake + make -j bake - name: Release baked book to S3 uses: shallwefootball/s3-upload-action@master with: diff --git a/makefile b/makefile index 154f572..0187dc2 100644 --- a/makefile +++ b/makefile @@ -25,7 +25,7 @@ build_pdf: $(DOCKER_CMD) "cd /opt/repo/book && make" bake: - $(DOCKER_CMD) "cd /opt/repo/book && make bake" + $(DOCKER_CMD) "cd /opt/repo/book && make -j bake" website: $(DOCKER_CMD) "cd /opt/repo/book && make website"