forked from blitz-research/monkey2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (33 loc) · 914 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
language: sh
os:
- linux
- osx
- windows
dist: bionic
addons:
apt:
update: true
packages:
- gcc
- g++-multilib
- libopenal-dev
- libpulse-dev
- libsdl2-dev
- libc6-dev
- libc6
before_scripts:
- cd scripts
scripts:
- if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then ./rebuildmx2cc.sh; fi
- if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then ./rebuildmods.sh; fi
- if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then ./rebuildted2go.sh; fi
- if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then ./makedocs.sh; fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then ./rebuildmx2cc.bat; fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then ./rebuildmods.bat; fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then ./rebuildted2go.bat; fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then ./makedocs.bat; fi
branches:
only:
- develop
notifications:
email: false