diff options
author | Marius Kintel <marius@kintel.net> | 2013-10-31 02:39:18 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-10-31 02:39:18 (GMT) |
commit | 435e0c021c5018ee5de69d3218c3e31c8ab75be5 (patch) | |
tree | 516580b78da841aefe89e2b06600c3aa7c20c8a9 /scripts | |
parent | 83dc80ff5f1dbf30fff8d7f263d47d7f70832bd4 (diff) |
Limit parallel builds as Travis apparently runs out of memory
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis-ci.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/travis-ci.sh b/scripts/travis-ci.sh index 6f9868d..9d4258a 100755 --- a/scripts/travis-ci.sh +++ b/scripts/travis-ci.sh @@ -11,7 +11,7 @@ if [[ $? != 0 ]]; then echo "Error configuring test suite" exit 1 fi -make -j4 +make -j2 if [[ $? != 0 ]]; then echo "Error building test suite" exit 1 |