Skip to content

Commit

Permalink
Merge pull request nasa#428 from avan989/new_travis
Browse files Browse the repository at this point in the history
issue nasa#427, adding travis.yml for cppcheck on flight
  • Loading branch information
skliper committed Jan 14, 2020
2 parents 7251cbc + 6a77b21 commit da8ede1
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
dist: bionic
sudo: required
language:
- c
compiler:
- gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- cmake

before_install:
- sudo apt-get install cppcheck

script:
# Check versions
- cppcheck --version

#cppcheck flight software cfe/fsw/cfe-core/src
- cppcheck --force --inline-suppr --std=c99 --language=c --error-exitcode=1 --enable=warning,performance,portability,style --suppress=variableScope --inconclusive fsw/cfe-core/src 2>cppcheck_flight_cfe.txt
- |
if [[ -s cppcheck_flight_cfe.txt ]]; then
echo "You must fix cppcheck errors before submitting a pull request"
echo ""
cat cppcheck_flight_cfe.txt
exit -1
fi

0 comments on commit da8ede1

Please sign in to comment.