Only post comment if this is a pull request

This commit is contained in:
Jason Turner
2014-03-26 13:37:51 -06:00
parent 611692646f
commit a652a7e564

View File

@@ -20,9 +20,11 @@ after_script:
- 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
- curl -H "Authorization: token ${TOKEN}" --request POST --data @output.json https://api.github.com/repos/ChaiScript/ChaiScript/commits/${TRAVIS_COMMIT}/comments
- 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}" = "true" ]; then curl -H "Authorization: token ${TOKEN}" --request POST --data @output.json https://api.github.com/repos/ChaiScript/ChaiScript/commits/${TRAVIS_COMMIT}/comments; fi
notifications:
recipients:
- jason@emptycrate.com