2016-05-14 19:17:32 +00:00
|
|
|
os:
|
|
|
|
- linux
|
|
|
|
- osx
|
|
|
|
language: c
|
|
|
|
compiler:
|
2016-05-26 10:07:25 +00:00
|
|
|
- clang
|
2016-05-14 19:17:32 +00:00
|
|
|
- gcc
|
2019-06-29 14:24:50 +00:00
|
|
|
before_install:
|
|
|
|
- |
|
2019-07-01 15:29:57 +00:00
|
|
|
if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(.md)|(.vc)|(.tc)|(.pm)|(.diff)|(.pl)|(.sh)|(.cmd)|(.hash)|(.cl)|(.yaml)|(.rule)|(.hckmap)|(.charset)|(.yml)|(.editorconfig)|(.gitattributes)|(.gitignore)|(.lock)|(.hcmask)'
|
2019-06-29 14:24:50 +00:00
|
|
|
then
|
|
|
|
echo "No code changes detected, skip the CI build."
|
|
|
|
exit
|
|
|
|
fi
|
2016-05-14 19:17:32 +00:00
|
|
|
script:
|
2016-05-26 10:07:25 +00:00
|
|
|
- make
|