Skip to content

Commit 800fa60

Browse files
silverwindearl-warren
authored andcommitted
Disable parallel Make execution (go-gitea#29186)
Ref: https://www.gnu.org/software/make/manual/html_node/Parallel-Disable.html > If the .NOTPARALLEL special target with no prerequisites is specified anywhere then the entire instance of make will be run serially, regardless of the parallel setting (cherry picked from commit 69ed1a4) Conflicts: README.md
1 parent 4f050f3 commit 800fa60

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,3 +1023,8 @@ docker:
10231023

10241024
# This endif closes the if at the top of the file
10251025
endif
1026+
1027+
# Disable parallel execution because it would break some targets that don't
1028+
# specify exact dependencies like 'backend' which does currently not depend
1029+
# on 'frontend' to enable Node.js-less builds from source tarballs.
1030+
.NOTPARALLEL:

0 commit comments

Comments
 (0)