Newer
Older
Vassil Vassilev
committed
sudo: false
language: cpp
Vassil Vassilev
committed
cache:
ccache: true
# Do not build our sync branch.
branches:
only:
- master
Vassil Vassilev
committed
# Without the top-level env, no job will be allowed to fail.
Vassil Vassilev
committed
matrix:
# Abort all builds on a single failing matrix entry.
fast_finish: true
exclude:
# Note: Workaround travis-ci/travis-ci#4681
# Exclude default job which lacks our included environment variables.
- os: linux
Vassil Vassilev
committed
include:
- env: TOOL=clang-format
script: &format_script
- if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then .ci/format_script.sh; fi
- env: TOOL=clang-tidy-analyzer
before_script: ©_headers
- echo "Copying and generating header files."
- echo -en "travis_fold:start:install.headers"
- .ci/copy_headers.sh
- echo -en 'travis_fold:end:install.headers\\r'
script: &tidy_script
- |
if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then
.ci/tidy_script.sh
fi
- env: TOOL=clang-tidy-modernize
before_script: *copy_headers
script: *tidy_script
script: cd math/minuit2 && .ci/make_and_test.sh
# clang-tidy-modernize is still experimental
- env: TOOL=clang-tidy-modernize
# a lot of code doesn't follow clang-format yet
- env: TOOL=clang-format
# This will never run since there is not a clang-tidy only TOOL
# elif [[ "$TRAVIS_EVENT_TYPE" = "cron" ]] && [[ $TOOL == 'clang-tidy' ]]; then
# # We need to ignore our vendor drops.
# FILES_REGEX='^.*root\/(?!interpreter\/|core\/clib)'
#
# echo "Running clang-tidy-3.9 against branch $TRAVIS_BRANCH."
# echo "run-clang-tidy-3.9.py -j4 -clang-tidy-binary $(which clang-tidy-3.9) -checks=-*,clang-analyzer-* $FILES_REGEX"
# run-clang-tidy-3.9.py -j4 -clang-tidy-binary $(which clang-tidy-3.9) -checks=-*,clang-analyzer-* $FILES_REGEX
# fi
on_failure: echo "Showing current directory contents" && ls -la