@@ -56,7 +56,7 @@ if [[ $TASK = 'lint' ]]; then
5656 # the following is a bit of a hack to build the files normally built during
5757 # the build, so they are present for linting to run against
5858 travis_fold start " make_builtfiles"
59- make builtfiles;
59+ make builtfiles VERBOSE=1 ;
6060 travis_fold end " make_builtfiles"
6161 # first check we've not got any generic NOLINTs
6262 # count the number of generic NOLINTs
@@ -70,7 +70,7 @@ if [[ $TASK = 'lint' ]]; then
7070 echo " Found $nolints generic NOLINTs"
7171 fi ;
7272 # run the cpplint tool, fetching it if necessary
73- make cpplint
73+ make cpplint VERBOSE=1
7474elif [[ $TASK = ' check-licences' ]]; then
7575 # check licences only if it is the requested task
7676 travis_fold start " autoreconf"
@@ -82,7 +82,7 @@ elif [[ $TASK = 'check-licences' ]]; then
8282 # the following is a bit of a hack to build the files normally built during
8383 # the build, so they are present for licence checking to run against
8484 travis_fold start " make_builtfiles"
85- make builtfiles;
85+ make builtfiles VERBOSE=1 ;
8686 travis_fold end " make_builtfiles"
8787 ./scripts/enforce_licence.py
8888 if [[ $? -ne 0 ]]; then
@@ -99,7 +99,7 @@ elif [[ $TASK = 'spellintian' ]]; then
9999 # the following is a bit of a hack to build the files normally built during
100100 # the build, so they are present for spellintian to run against
101101 travis_fold start " make_builtfiles"
102- make builtfiles;
102+ make builtfiles VERBOSE=1 ;
103103 travis_fold end " make_builtfiles"
104104 spellingfiles=$( eval " find ./ -type f -and ! \( \
105105 $SPELLINGBLACKLIST \
@@ -125,7 +125,7 @@ elif [[ $TASK = 'spellintian-duplicates' ]]; then
125125 # the following is a bit of a hack to build the files normally built during
126126 # the build, so they are present for spellintian to run against
127127 travis_fold start " make_builtfiles"
128- make builtfiles;
128+ make builtfiles VERBOSE=1 ;
129129 travis_fold end " make_builtfiles"
130130 spellingfiles=$( eval " find ./ -type f -and ! \( \
131131 $SPELLINGBLACKLIST \
@@ -151,7 +151,7 @@ elif [[ $TASK = 'codespell' ]]; then
151151 # the following is a bit of a hack to build the files normally built during
152152 # the build, so they are present for codespell to run against
153153 travis_fold start " make_builtfiles"
154- make builtfiles;
154+ make builtfiles VERBOSE=1 ;
155155 travis_fold end " make_builtfiles"
156156 spellingfiles=$( eval " find ./ -type f -and ! \( \
157157 $SPELLINGBLACKLIST \
@@ -178,13 +178,13 @@ elif [[ $TASK = 'doxygen' ]]; then
178178 # the following is a bit of a hack to build the files normally built during
179179 # the build, so they are present for Doxygen to run against
180180 travis_fold start " make_builtfiles"
181- make builtfiles;
181+ make builtfiles VERBOSE=1 ;
182182 travis_fold end " make_builtfiles"
183183 # count the number of warnings
184184 warnings=$( make doxygen-doc 2>&1 > /dev/null | wc -l)
185185 if [[ $warnings -ne 0 ]]; then
186186 # print the output for info
187- make doxygen-doc
187+ make doxygen-doc VERBOSE=1
188188 echo " Found $warnings doxygen warnings"
189189 exit 1;
190190 else
@@ -230,7 +230,7 @@ elif [[ $TASK = 'flake8' ]]; then
230230 # the following is a bit of a hack to build the files normally built during
231231 # the build, so they are present for flake8 to run against
232232 travis_fold start " make_builtfiles"
233- make builtfiles;
233+ make builtfiles VERBOSE=1 ;
234234 travis_fold end " make_builtfiles"
235235 make flake8
236236elif [[ $TASK = ' pychecker' ]]; then
@@ -258,7 +258,7 @@ elif [[ $TASK = 'pychecker' ]]; then
258258 travis_fold end " pychecker_b"
259259 # Even more restricted checking for files that import files that break pychecker and have unused parameters
260260 travis_fold start " pychecker_c"
261- pychecker --quiet --limit 500 --blacklist $PYCHECKER_BLACKLIST --only --no-argsused $( find ./ -name " *.py" -and ! \( -name " *_pb2.py" -or -name " OlaClient.py" -or -name " ola_candidate_ports.py" -or -name " ola_universe_info.py" -or -name " rdm_snapshot.py" -or -name " ClientWrapper.py" -or -name " PidStore.py" -or -name " enforce_licence.py" -or -name " ola_mon.py" -or -name " TestLogger.py" -or -name " TestRunner.py" -or -name " rdm_model_collector.py" -or -name " rdm_responder_test.py" -or -name " rdm_test_server.py" -or -wholename " ./include/ola/gen_callbacks.py" -or -wholename " ./tools/rdm/ResponderTest.py" -or -wholename " ./tools/rdm/TestHelpers.py" \) | xargs)
261+ pychecker --quiet --limit 500 --blacklist $PYCHECKER_BLACKLIST --only --no-argsused $( find ./ -name " *.py" -and ! \( -name " *_pb2.py" -or -name " OlaClient.py" -or -name " ola_candidate_ports.py" -or -name " ola_universe_info.py" -or -name " rdm_snapshot.py" -or -name " ClientWrapper.py" -or -name " PidStore.py" -or -name " enforce_licence.py" -or -name " ola_mon.py" -or -name " TestLogger.py" -or -name " TestRunner.py" -or -name " rdm_model_collector.py" -or -name " rdm_responder_test.py" -or -name " rdm_test_server.py" -or -wholename " ./include/ola/gen_callbacks.py" -or -wholename " ./tools/rdm/ResponderTest.py" -or -wholename " ./tools/rdm/TestDefinitions.py " -or -wholename " ./tools/rdm/ TestHelpers.py " -or -wholename " ./tools/rdm/TestMixins .py" \) | xargs)
262262 travis_fold end " pychecker_c"
263263 # Special case checking for some python 3 compatibility workarounds
264264 travis_fold start " pychecker_d"
304304 ./configure $DISTCHECK_CONFIGURE_FLAGS ;
305305 travis_fold end " configure"
306306 travis_fold start " make_distcheck"
307- make distcheck;
307+ make distcheck VERBOSE=1 ;
308308 travis_fold end " make_distcheck"
309309 travis_fold start " make_dist"
310310 make dist;
0 commit comments