mirror of
https://github.com/isocpp/CppCoreGuidelines.git
synced 2024-03-22 13:30:58 +08:00
26 lines
470 B
YAML
26 lines
470 B
YAML
# This is the configuration for Travis CI, a free github-integrated service that runs this script for each pull request (if configured)
|
|
|
|
# Be nice to travis, allow docker builds, must not use sudo below
|
|
sudo: false
|
|
|
|
# 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
|