CppCoreGuidelines/.travis.yml
cclauss 622568271a Travis CI: (#1469)
[Travis are now recommending removing the __sudo__ tag](https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration).

"_If you currently specify __sudo: false__ in your __.travis.yml__, we recommend removing that configuration_"
2019-07-09 17:07:32 -04:00

23 lines
391 B
YAML

# This is the configuration for Travis CI, a free github-integrated service that runs this script for each pull request (if configured)
# provides gcc, clang, make, scons, cmake
language: c++
# alternatives: gcc, clang, or both (as yaml list)
compiler: clang
addons:
apt:
packages:
- hunspell
install:
-
script:
- cd scripts; make -k
- cd ..
notifications:
email: false