-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path.travis.yml
43 lines (36 loc) · 1.06 KB
/
.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
41
42
43
language: sh
os:
- linux
- osx
- windows
osx_image: xcode12.2
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 ./rebuildmods.sh; fi
- if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then ./rebuildwake.sh; fi
- if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then ./rebuildwide.sh; fi
- if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then ./rebuildlauncher.sh; fi
- if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then ./makedocs.sh; fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then ./rebuildmods.bat; fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then ./rebuildwake.bat; fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then ./rebuildwide.bat; fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then ./rebuildlauncher.bat; fi
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then ./makedocs.bat; fi
branches:
only:
- develop
notifications:
email: false