forked from Blizzard/s2client-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
40 lines (35 loc) · 945 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
language: cpp
matrix:
include:
- os: windows
env: BUILD_CONFIGURATION=Debug
- os: windows
env: BUILD_CONFIGURATION=Release
- os: linux
dist: trusty
group: travis_lts
sudo: required
env: BUILD_CONFIGURATION=Debug
- os: linux
dist: trusty
group: travis_lts
sudo: required
env: BUILD_CONFIGURATION=Release
- os: osx
osx_image: xcode9.1
env: BUILD_CONFIGURATION=Debug
- os: osx
osx_image: xcode9.1
env: BUILD_CONFIGURATION=Release
before_install:
- . .travis/before-install.sh
install:
- . .travis/install.sh
script:
- mkdir build
- cd build
- . ../.travis/build.sh
# FIXME: (alkurbatov): Temporary disable documentation generator.
# This should be changed as we don't want/can push to Blizzard repos.
#after_success:
# - '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && cd $TRAVIS_BUILD_DIR && ./generate_and_deploy_doxygen.sh'