qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 05/11] travis: build tests objects in parallel, then


From: Philippe Mathieu-Daudé
Subject: [Qemu-devel] [PATCH 05/11] travis: build tests objects in parallel, then run tests sequentially
Date: Fri, 16 Jun 2017 13:13:28 -0300

tests are run sequentially to avoid mixed results output.

Signed-off-by: Philippe Mathieu-Daudé <address@hidden>
---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index c9ac741afc..dbbb11617d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -66,7 +66,7 @@ before_script:
   - ./configure ${CONFIG}
 script:
   - make -j${PARALLEL_JOBS}
-  - if [ "${RUN_TESTS}" == "yes" ]; then make check; fi
+  - if [ "${RUN_TESTS}" == "yes" ]; then make -j${PARALLEL_JOBS} check-compile 
&& make check; fi
 matrix:
   include:
     # Test with CLang for compile portability
-- 
2.11.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]