diff --git a/.travis.yml b/.travis.yml index 088697f..657c7bc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,34 +1,23 @@ language: cpp compiler: -- gcc + - gcc before_install: -- sudo apt-get install libboost-dev libboost-all-dev -- sudo pip install cpp-coveralls + - sudo apt-get install libboost-dev libboost-all-dev + - sudo pip install cpp-coveralls script: -- cmake -D ENABLE_COVERAGE:BOOL=TRUE -D CMAKE_BUILD_TYPE:STRING=Debug . -- make -j2 -- make test -- mkdir gcov -- find CMakeFiles/ -name "*.gc*" -exec mv {} gcov/ \; -- gcov -d -o gcov gcov/*.gcda -- coveralls -n -E ".*\.cpp" + - cmake -D ENABLE_COVERAGE:BOOL=TRUE -D CMAKE_BUILD_TYPE:STRING=Debug . + - make -j2 + - make test + - mkdir gcov + - find CMakeFiles/ -name "*.gc*" -exec mv {} gcov/ \; + - gcov -d -o gcov gcov/*.gcda + - coveralls -n -E ".*\.cpp" after_script: -- pushd .. -- wget http://sourceforge.net/projects/cppcheck/files/cppcheck/1.64/cppcheck-1.64.tar.bz2 -- tar -xvf cppcheck-1.64.tar.bz2 -- cd cppcheck-1.64 -- make -j2 -- popd -- ../cppcheck-1.64/cppcheck --enable=all --inconclusive -I include --inline-suppr --std=c++11 --platform=unix64 src/main.cpp src/chai*.cpp --template ' - __{severity}__: [{file}:{line}](../blob/TRAVIS_COMMIT/{file}#L{line}) {message} ({id})' 2>output -- sed -i "s/TRAVIS_COMMIT/${TRAVIS_COMMIT}/g" output -- echo -n '{ "body": " ' > output.json -- echo -n `awk '{printf "%s\\\\n", $0;}' output` >> output.json -- echo -n '"}' >> output.json -- if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then curl -H "Authorization: token ${TOKEN}" --request POST --data @output.json https://api.github.com/repos/ChaiScript/ChaiScript/commits/${TRAVIS_COMMIT}/comments; else curl -H "Authorization: token ${TOKEN}" --request POST --data @output.json https://api.github.com/repos/ChaiScript/ChaiScript/issues/${TRAVIS_PULL_REQUEST}/comments; fi + - contrib/codeanalysis/runcppcheck.sh notifications: - recipients: - - jason@emptycrate.com email: + recipients: + - jason@emptycrate.com on_success: always on_failure: always env: diff --git a/contrib/codeanalysis/runcppcheck.sh b/contrib/codeanalysis/runcppcheck.sh new file mode 100755 index 0000000..e4d3946 --- /dev/null +++ b/contrib/codeanalysis/runcppcheck.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +pushd .. +wget http://sourceforge.net/projects/cppcheck/files/cppcheck/1.64/cppcheck-1.64.tar.bz2 +tar -xvf cppcheck-1.64.tar.bz2 +cd cppcheck-1.64 +make -j2 +popd +../cppcheck-1.64/cppcheck --enable=all --inconclusive -I include --inline-suppr --std=c++11 --platform=unix64 src/main.cpp src/chai*.cpp --template ' - __{severity}__: [{file}:{line}](../blob/TRAVIS_COMMIT/{file}#L{line}) {message} ({id})' 2>output +sed -i "s/TRAVIS_COMMIT/${TRAVIS_COMMIT}/g" output +echo -n '{ "body": " ' > output.json +echo -n `awk '{printf "%s\\\\n", $0;}' output` >> output.json +echo -n '"}' >> output.json +if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then curl -H "Authorization: token ${TOKEN}" --request POST --data @output.json https://api.github.com/repos/ChaiScript/ChaiScript/commits/${TRAVIS_COMMIT}/comments; else curl -H "Authorization: token ${TOKEN}" --request POST --data @output.json https://api.github.com/repos/ChaiScript/ChaiScript/issues/${TRAVIS_PULL_REQUEST}/comments; fi + +