summaryrefslogtreecommitdiff
path: root/travis.sh
diff options
context:
space:
mode:
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/travis.sh b/travis.sh
index 93a5935..a09ed2e 100755
--- a/travis.sh
+++ b/travis.sh
@@ -94,6 +94,15 @@ if [ "$1" == "after_success" ] && [ "$UPB_TRAVIS_BUILD" != "coverage" ]; then
exit
fi
+if [ "$CC" != "gcc" ] && [ "$UPB_TRAVIS_BUILD" == "coverage" ]; then
+ # coverage build only works for GCC.
+ exit
+fi
+
set -e
set -x
+
+# Make any compiler warning fail the build.
+export UPB_FAIL_WARNINGS=true
+
eval ${UPB_TRAVIS_BUILD}_${1}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback