Skip to content

Commit

Permalink
Merge pull request #28 from nasa/fix24-standard-format
Browse files Browse the repository at this point in the history
Fix #24, Enforce standard style in CI
  • Loading branch information
skliper committed Jan 14, 2020
2 parents 826cf22 + 041f426 commit d46de5f
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
dist: bionic
sudo: required
language:
- c
compiler:
- gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- cmake

before_install:
- sudo apt-get install cppcheck
- cppcheck --version
# for clang-format 10
- wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
- sudo add-apt-repository 'deb https://apt.llvm.org/bionic/ llvm-toolchain-bionic main'
- sudo apt-get update
- sudo apt-get install clang-format-10
- clang-format-10 --version


script:
# Get bundle (doesn't populate submodules, not needed for style enforcement)
- cd ..
- git clone https://github.com/nasa/cFS.git
- mv ci_lab cFS/apps
- cd cFS/apps/ci_lab
# Enforce formatting
- find . -name "*.[ch]" -exec clang-format-10 -i -style=file {} +
- git diff > style_differences.txt
- |
if [[ -s style_differences.txt ]]; then
echo "You must fix style differences before submitting a pull request"
echo ""
cat style_differences.txt
exit -1
fi

0 comments on commit d46de5f

Please sign in to comment.