]> git.sur5r.net Git - i3/i3status/blobdiff - .travis.yml
Added function to print content from file (#331)
[i3/i3status] / .travis.yml
index 05d1703e14dfa4000821528e1fd6459c7c45f712..7ceaddffdf6c2ee646800712c109422d00e35948 100644 (file)
@@ -20,6 +20,7 @@ addons:
     - clang-format-3.8
     - libllvm3.5
 script:
-  - make -j
   - clang-format-3.8 -i $(find . -name "*.[ch]" | tr '\n' ' ') && git diff --exit-code || (echo 'Code was not formatted using clang-format!'; false)
-  - make test
+  # TODO: re-enable sanitizers once issues are fixed
+  - autoreconf -fi && mkdir -p build && cd build && (../configure --disable-sanitizers || (cat config.log; false)) && make -j V=1
+  - make -j check V=1 || (cat test-suite.log; false)