Skip to content

Commit

Permalink
travis: Only run testsuite for gcc builds
Browse files Browse the repository at this point in the history
This reduces the total travis build time significantly.

Signed-off-by: Thomas Graf <[email protected]>
Acked-by: Flavio Leitner <[email protected]>
Signed-off-by: Ben Pfaff <[email protected]>
  • Loading branch information
Thomas Graf authored and blp committed Dec 5, 2014
1 parent 517f931 commit 33a58fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ else
make CFLAGS="$CFLAGS" C=1
fi

if [ $TESTSUITE ]; then
if [ $TESTSUITE ] && [ $CC != "clang" ]; then
if ! make distcheck; then
# testsuite.log is necessary for debugging.
cat */_build/tests/testsuite.log
Expand Down

0 comments on commit 33a58fc

Please sign in to comment.