summaryrefslogtreecommitdiff
path: root/.appveyor.yml
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2019-04-01 07:51:43 -0600
committerMats Wichmann <mats@linux.com>2019-04-01 17:37:02 -0600
commitc7fedae70b112c03f8898e4b3091770a07b46f2c (patch)
tree554bfd6dbacb2a0939a007e9deb93dd6985c46b5 /.appveyor.yml
parent4b2c0674a783c6d2d1f66d2588223bd5d99acda7 (diff)
downloadscons-git-c7fedae70b112c03f8898e4b3091770a07b46f2c.tar.gz
Run all CI builds with -j 2
With the output ordering cleaned up in runtest.py, run all the jobs as two-process to try to lot some more off the build itme. This is a CI-config only change, no code. Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index cbf723376..d2c63cb5e 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -217,7 +217,7 @@ build_script:
# Windows run the tests
# NOTE: running powershell from cmd on purpose because it formats the output
# correctly
- - cmd: powershell -Command "& { if($env:COVERAGE -eq 1) { coverage run -p --rcfile=$($env:COVERAGE_PROCESS_START) runtest.py --exclude-list exclude_list.txt -f build_tests.txt } else { C:\\%WINPYTHON%\\python.exe runtest.py -j 2 --exclude-list exclude_list.txt -f build_tests.txt }; if($LastExitCode -eq 2 -Or $LastExitCode -eq 0) { $host.SetShouldExit(0 )} else {$host.SetShouldExit(1)}}"
+ - cmd: powershell -Command "& { if($env:COVERAGE -eq 1) { coverage run -p --rcfile=$($env:COVERAGE_PROCESS_START) runtest.py -j 2 --exclude-list exclude_list.txt -f build_tests.txt } else { C:\\%WINPYTHON%\\python.exe runtest.py -j 2 --exclude-list exclude_list.txt -f build_tests.txt }; if($LastExitCode -eq 2 -Or $LastExitCode -eq 0) { $host.SetShouldExit(0 )} else {$host.SetShouldExit(1)}}"
# linux run the tests
# unset JAVA_TOOL_OPTIONS because newer java prints this to stderr