Skip to content
This repository was archived by the owner on Nov 21, 2018. It is now read-only.

Commit c38e165

Browse files
committed
Use dojob to run make on windows
1 parent e6cff8f commit c38e165

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

master/master.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -582,6 +582,10 @@ class MakeCommand(object):
582582
if "buildername" in props:
583583
if "bsd" in props["buildername"]:
584584
return "gmake"
585+
if "win" in props["buildername"]:
586+
# On windows dojob puts all children in a single taskgroup so they can be killed
587+
# https://github.com/retep998/dojob-rs
588+
return ["c:/dojob.exe", "make"]
585589
return "make"
586590

587591
# property-based IRenderable helper

0 commit comments

Comments
 (0)