Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #24, Enforce standard style in CI #28

Merged
merged 1 commit into from
Jan 14, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 http: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