From f86f021acf9646d2ef56cc1b1c8ce78c84e57b69 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Fri, 15 Sep 2017 13:12:17 +0200 Subject: [PATCH] Travis CI : Move the tcc check to the install step --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6f55c4d7..edb7dc65 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,11 +10,12 @@ compiler: - gcc - g++ -before_script: +install: - ./autogen.sh - env CC=tcc CFLAGS='-w' ./configure --prefix=/tmp --disable-dependency-tracking --disable-shared || cat config.log - make -j $(nproc) && make check && make install - env CC=tcc CPPFLAGS='-I/tmp/include' LDFLAGS='-L/tmp/lib' LD_LIBRARY_PATH='/tmp/lib' ./test/constcheck.sh + - make uninstall - make distclean script: