1language: cpp
2dist: trusty
3sudo: required # the doc target uses sudo to install dependencies
4
5os:
6  - linux
7  - osx
8
9env:
10  global:
11    - secure: |-
12        Gsnp9ERFnXt+diCfc7Vb72g+7HDn1MCHvw4zfUDdoBh9bxxFlLQRlzZZfwWhzni57lflrt
13        0QHXafu+oBVOJuNv6WauV3+ZyuWIQRmNGjZFNLvZsXHK/dyad2vGQBPvEkb+8l/aCyTpbr
14        6pxmyzLHSn1ZR7OX5rfPvwM3tOyZ3H0=
15  matrix:
16    - BUILD=Doc
17    - BUILD=Debug STANDARD=0x
18    - BUILD=Release STANDARD=98
19    - BUILD=Release STANDARD=0x
20
21matrix:
22  exclude:
23    - os: osx
24      env: BUILD=Doc
25
26script:
27  - support/travis-build.py
28