From: Paul Chaignon Date: Fri, 28 Jun 2019 15:51:42 +0000 (+0200) Subject: travis: Move fastest test configuration first X-Git-Tag: v5.2~50 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f2bf222d3c276cd9a680463352c59eee017a1b18;p=strace travis: Move fastest test configuration first 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 --- 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