Revert "Remove parallel option from make (#368)"

This reverts commit 3d16d58817.

There is no reason for parallel build to fail
This commit is contained in:
Ced
2024-05-29 16:57:51 +01:00
parent 94c775d511
commit ee5e47de63
2 changed files with 2 additions and 2 deletions

View File

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

View File

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