Skip to content

Commit 489d1a1

Browse files
committed
test: Increase from -j4 to -j8
Even on fewer cores, it OS deals with it fine. Given it's mostly I/O bound and not CPU bound, this should be a net-win no matter the CPU count.
1 parent a438258 commit 489d1a1

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

Makefile

+7-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010

1111
ifndef MAKEFLAGS
12-
MAKEFLAGS += -j 4
12+
MAKEFLAGS += -j 8
1313
endif
1414

1515
export DEBUG=0
@@ -21,7 +21,7 @@ all: lint
2121
lint:
2222
puppet-lint --fail-on-warnings .
2323

24-
test: test-codeorigin-stage test-codeorigin-prod-http test-codeorigin-prod-https test-codeorigin-next-http test-codeorigin-next-https test-contentorigin-prod test-miscweb test-wpdocs test-releases
24+
test: test-codeorigin-prod-http test-codeorigin-prod-https test-codeorigin-next-http test-codeorigin-next-https test-codeorigin-stage test-contentorigin-prod test-miscweb test-wpdocs test-releases
2525

2626
test-codeorigin-prod-http:
2727
@ php test/CodeoriginTest.php "http://code.jquery.com"
@@ -39,6 +39,11 @@ test-codeorigin-next-https:
3939
@ php test/CodeoriginTest.php "https://codeorigin.jquery.com"
4040
@ echo "$@"
4141

42+
test-codeorigin-stage:
43+
@ php test/CodeoriginTest.php "https://codeorigin-02.stage.ops.jquery.net"
44+
@ echo "$@"
45+
46+
4247
test-contentorigin-prod:
4348
@ php test/ContentoriginTest.php
4449
@ echo "$@"
@@ -54,7 +59,3 @@ test-wpdocs:
5459
test-releases:
5560
@ php test/ReleasesTest.php
5661
@ echo "$@"
57-
58-
test-codeorigin-stage:
59-
@ php test/CodeoriginTest.php "https://codeorigin-02.stage.ops.jquery.net"
60-
@ echo "$@"

0 commit comments

Comments
 (0)