Skip to content

Commit

Permalink
Reapply "Remove parallel option from make (#368)"
Browse files Browse the repository at this point in the history
Fair enough it breaks on CI... does work on my machine though :(
not sure what is going on.

This reverts commit ee5e47d.
  • Loading branch information
cedounet committed May 29, 2024
1 parent ee5e47d commit e5bea97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-book-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
options: -v ${{ github.workspace }}:/app
run: |
cd /app/book
make -j bake
make bake
- name: Release baked book to S3
uses: shallwefootball/s3-upload-action@master
with:
Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ build_pdf:
$(DOCKER_CMD) "cd /opt/repo/book && make"

bake:
$(DOCKER_CMD) "cd /opt/repo/book && make -j bake"
$(DOCKER_CMD) "cd /opt/repo/book && make bake"

website:
$(DOCKER_CMD) "cd /opt/repo/book && make website"
Expand Down

0 comments on commit e5bea97

Please sign in to comment.