diff options
author | Andrew Featherstone <andrew.featherstone@gmail.com> | 2017-12-20 16:07:37 (GMT) |
---|---|---|
committer | Andrew Featherstone <andrew.featherstone@gmail.com> | 2017-12-20 16:07:37 (GMT) |
commit | 78152975cd9f87fa34c91c8480ae1552d3756738 (patch) | |
tree | 9f8b2c4a4b6f810922ee14c827ad179c31f83027 | |
parent | bf843a80861d87154bd63387a737e9f0c9141f2d (diff) | |
download | SCons-78152975cd9f87fa34c91c8480ae1552d3756738.zip SCons-78152975cd9f87fa34c91c8480ae1552d3756738.tar.gz SCons-78152975cd9f87fa34c91c8480ae1552d3756738.tar.bz2 |
Try and run 2 jobs in parallel to use both virtual cores of AppVeyor's VM, and get under the one hour time limit.
-rw-r--r-- | .appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index b25b7ff..cedf8e0 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -22,4 +22,4 @@ install: build: off test_script: - - cmd: python runtest.py -a || if %errorlevel% == 2 then exit 0 else exit 1
\ No newline at end of file + - cmd: python runtest.py -a -j 2 || if %errorlevel% == 2 then exit 0 else exit 1
\ No newline at end of file |