[PATCH 1/1] travis: Move fastest test configuration first

Paul Chaignon paul.chaignon at gmail.com
Fri Jun 28 16:09:20 UTC 2019


I use Travis CI to check each patch before sending my patchsets.  Most
failures are simple and make all test configurations fail.  However, since
Travis CI runs test configurations in order and given that the first three
configurations are the slowest ones, it takes about twenty minutes to see
the failure.  Moving the fastest test configuration first would allow to
fail earlier.  It would become about 3x faster to fail in case of simple
mistakes.

* .travis.yml (CC=gcc, STACKTRACE=no): Move to first position.

Signed-off-by: Paul Chaignon <paul.chaignon at gmail.com>
---
 .travis.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 2874c5dd..8c156874 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -18,6 +18,10 @@ env:
 
 matrix:
   include:
+    - compiler: gcc
+      env:
+        - TARGET=x86
+        - STACKTRACE=no
     - compiler: gcc
       env:
         - TARGET=x86_64
@@ -37,10 +41,6 @@ matrix:
       env:
         - TARGET=x32
         - STACKTRACE=no
-    - compiler: gcc
-      env:
-        - TARGET=x86
-        - STACKTRACE=no
     - compiler: clang
       env:
         - TARGET=x86_64
-- 
2.17.1



More information about the Strace-devel mailing list