| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #!/bin/bash
- set -e
- set -x
- if grep -nr '\s$' src *.yml *.txt *.md Doxyfile .gitignore .gitmodules .travis* dist/*.desktop \
- dist/*.svg dist/*.xml; then
- echo Trailing whitespace found, aborting
- exit 1
- fi
- # Only run clang-format on Linux because we don't have 4.0 on OS X images
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then
- # Default clang-format points to default 3.5 version one
- CLANG_FORMAT=clang-format-4.0
- $CLANG_FORMAT --version
- if [ "$TRAVIS_EVENT_TYPE" = "pull_request" ]; then
- # Get list of every file modified in this pull request
- files_to_lint="$(git diff --name-only --diff-filter=ACMRTUXB $TRAVIS_COMMIT_RANGE | grep '^src/[^.]*[.]\(cpp\|h\)$' || true)"
- else
- # Check everything for branch pushes
- files_to_lint="$(find src/ -name '*.cpp' -or -name '*.h')"
- fi
- # Turn off tracing for this because it's too verbose
- set +x
- for f in $files_to_lint; do
- d=$(diff -u "$f" <($CLANG_FORMAT "$f") || true)
- if ! [ -z "$d" ]; then
- echo "!!! $f not compliant to coding style, here is the fix:"
- echo "$d"
- fail=1
- fi
- done
- set -x
- if [ "$fail" = 1 ]; then
- exit 1
- fi
- fi
- #if OS is linux or is not set
- if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
- export CC=gcc-6
- export CXX=g++-6
- export PKG_CONFIG_PATH=$HOME/.local/lib/pkgconfig:$PKG_CONFIG_PATH
- mkdir build && cd build
- cmake ..
- make -j4
- ctest -VV -C Release
- elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
- set -o pipefail
- export MACOSX_DEPLOYMENT_TARGET=10.9
- export Qt5_DIR=$(brew --prefix)/opt/qt5
- mkdir build && cd build
- cmake .. -GXcode
- xcodebuild -configuration Release
- ctest -VV -C Release
- fi
|