]> git.sur5r.net Git - i3/i3/commitdiff
travis: enable more warnings, add -Werror
authorMichael Stapelberg <michael@stapelberg.de>
Sun, 29 Mar 2015 15:11:21 +0000 (17:11 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sun, 29 Mar 2015 15:11:21 +0000 (17:11 +0200)
This will ensure that our code stays free of warnings, at least for the
warnings that we have enabled. (Using _FORTIFY_SOURCE > 0 leads to more
warnings, some of them are harder to address.)

.travis.yml

index ebabbfafeb14da1aa6958d99f314be8fc9851b7d..279753e9df92f1e1afb8dd04b87496e05d1ddfe8 100644 (file)
@@ -42,6 +42,6 @@ install:
   - sudo /bin/sh -c 'cpanm -n -v X11::XCB || true'
   - sudo /bin/sh -c 'cpanm -n -v AnyEvent::I3 || true'
 script:
-  - make -j
+  - CFLAGS="-Wformat -Wformat-security -Wextra -Wno-unused-parameter -Werror" CPPFLAGS="-D_FORTIFY_SOURCE=0" make -j
   - (cd testcases && xvfb-run ./complete-run.pl --parallel=1 || (cat latest/complete-run.log; false))
   - clang-format-3.5 -i $(find . -name "*.[ch]" | tr '\n' ' ') && git diff --exit-code || (echo 'Code was not formatted using clang-format!'; false)