forked from uTox/uTox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
101 lines (86 loc) · 1.83 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
sudo: false
language: c
addons:
apt:
packages:
- cmake
- cmake-data
- yasm
- check
- libdbus-1-dev
- libopenal-dev
- libopenal-data
- libopenal1
- libv4l-dev
cache:
directories:
- $HOME/cache
matrix:
fast_finish: true
include:
- name: "Linux Clang"
os: linux
env: BUILD=linux
compiler: clang
- name: "Windows x64"
sudo: required
os: linux
env: BUILD=windows
compiler: x86_64-w64-mingw32-gcc
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc
- mingw-w64
- gcc-mingw-w64
- mingw-w64-common
- binutils-mingw-w64
- yasm
- libopenal-dev
- libopenal-data
- libopenal1
- name: "Windows x32 (XP)"
sudo: required
os: linux
env: BUILD=windows_legacy
compiler: i686-w64-mingw32-gcc
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc
- mingw-w64
- gcc-mingw-w64
- mingw-w64-common
- binutils-mingw-w64
- yasm
- libopenal-dev
- libopenal-data
- libopenal1
- os: osx
compiler: clang
env: BUILD=osx
git:
depth: 5
before_script:
- ./extra/travis/env.sh
- ./extra/travis/${BUILD}-before.sh
- ./extra/travis/filter_audio.sh
script:
- ./extra/travis/${BUILD}-script.sh
after_failure:
- ./extra/travis/debug_failure.sh
notifications:
email: false
irc:
channels:
- "chat.freenode.net#utox"
use_notice: true
skip_join: true
template:
- "TRAVIS Build %{result} %{branch} %{message} %{build_url}"