diff options
author | Julian Andres Klode <jak@debian.org> | 2017-06-30 17:56:49 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2017-06-30 18:16:51 +0200 |
commit | d6bcfa40f170434c387acfd6e8c1425f3fe057af (patch) | |
tree | 581ee85883ceeef23d085434ebf5f3b58fc66abf | |
parent | 551861110db67c7bad2bd0715f46191454c0b9a7 (diff) |
shippable: Run tests in parallel
Gbp-Dch: ignore
-rw-r--r-- | shippable.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shippable.yml b/shippable.yml index e144d94d5..54a707cdd 100644 --- a/shippable.yml +++ b/shippable.yml @@ -6,10 +6,10 @@ build: image_tag: stretch pull: true ci: - - apt-get install -qq build-essential + - apt-get install -qq build-essential expect - ./prepare-release travis-ci - mkdir build - ( cd build && cmake -DWITH_CURL=OFF .. ) - make -C build -j 4 - CTEST_OUTPUT_ON_FAILURE=1 make -C build test - - ./test/integration/run-tests -q + - unbuffer ./test/integration/run-tests -q -j 4 |