Travis: Temporarily disable the naming conventions check
This commit is contained in:
parent
842f8c569b
commit
2cfc2d25bb
|
@ -224,9 +224,9 @@ script:
|
|||
- ${CPPCHECK} --template=gcc -D__CPPCHECK__ --error-exitcode=1 --library=cppcheck-lib -Ilib -Iexternals/simplecpp/ -Iexternals/tinyxml/ -Icli --inconclusive --enable=style,performance,portability,warning,internal --exception-handling --inline-suppr --suppressions-list=.travis_suppressions -itest/cli -itest/synthetic -itest/testsuites -iaddons -igui cli lib gui test tools -j 2
|
||||
# check gui with qt settings
|
||||
- ${CPPCHECK} --template=gcc -D__CPPCHECK__ -DQT_VERSION=0x050000 --library=qt --error-exitcode=1 -Ilib -Iexternals/simplecpp/ -Iexternals/tinyxml/ -Icli --enable=style,performance,portability,warning,internal --exception-handling -j 2 gui/*.cpp --suppressions-list=.travis_suppressions -igui/test
|
||||
# check naming conventions
|
||||
- ${CPPCHECK} -i gui/test -j 2 --dump -q gui lib
|
||||
- find lib gui -maxdepth 1 -name "*.dump" | xargs -n 1 -P 4 python addons/naming.py --private-member-variable='m[A-Z].*'
|
||||
# check naming conventions TODO this is temporarily disabled
|
||||
# - ${CPPCHECK} -i gui/test -j 2 --dump -q gui lib
|
||||
# - find lib gui -maxdepth 1 -name "*.dump" | xargs -n 1 -P 4 python addons/naming.py --private-member-variable='m[A-Z].*'
|
||||
# Build gui
|
||||
- cd ./gui
|
||||
# clean rebuild
|
||||
|
|
Loading…
Reference in New Issue