summaryrefslogtreecommitdiff
path: root/.travis/build.sh
diff options
context:
space:
mode:
authorThomas Graf <tgraf@noironetworks.com>2014-11-28 13:50:02 +0100
committerBen Pfaff <blp@nicira.com>2014-12-05 12:36:06 -0800
commit33a58fc69ec5e8a3895992497a726b33092125dd (patch)
treece30399873ae2519c637699b26b2de5dea451a87 /.travis/build.sh
parent517f93116b143d5f16bafe62cf0fe13734db7dd5 (diff)
downloadopenvswitch-33a58fc69ec5e8a3895992497a726b33092125dd.tar.gz
travis: Only run testsuite for gcc builds
This reduces the total travis build time significantly. Signed-off-by: Thomas Graf <tgraf@noironetworks.com> Acked-by: Flavio Leitner <fbl@redhat.com> Signed-off-by: Ben Pfaff <blp@nicira.com>
Diffstat (limited to '.travis/build.sh')
-rwxr-xr-x.travis/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/build.sh b/.travis/build.sh
index 6e99c630c..990d263c5 100755
--- a/.travis/build.sh
+++ b/.travis/build.sh
@@ -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