forked from hrydgard/ppsspp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
110 lines (99 loc) · 2.45 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
100
101
102
103
104
105
106
107
108
109
110
# https://travis-ci.org
sudo: required
language: cpp
dist: xenial
addons:
apt:
update: true
packages:
- ant
- aria2
- build-essential
- cmake
- libgl1-mesa-dev
- libglu1-mesa-dev
- libsdl2-dev
- pv
- software-properties-common
sources:
- sourceline: 'ppa:zoogie/sdl2-snapshots'
- sourceline: 'ppa:ubuntu-toolchain-r/test'
- sourceline: 'ppa:ubuntu-sdk-team/ppa'
homebrew:
update: true
packages:
- ccache
- python
- sdl2
cache:
apt: true
ccache: true
directories:
- $HOME/Library/Caches/Homebrew
- $HOME/clcache
# By encrypting the channel name, we disable notifications from forks by default.
# It's not actually a big secret.
notifications:
irc:
channels:
- secure: "anmDihJ1uPnDSNDsEe3WQ5o4BsPApJbw6NupsAebt6kBxJm7WYKrSyUVmu/9GXgFvy756HBDVA6eikPtcak1+jLFfyOZqGw3ei69ZNnA+R7aoAzfiXilFqf53Yy2tzydEnF2nBYhJjQZgMBZUVWUD6pdKSXtVg/VZRhVqiDlb+A="
on_success: change
on_failure: always
skip_join: true
template:
- "%{repository_slug}:%{branch} - %{message} %{build_url}"
matrix:
include:
- os: linux
compiler: "gcc"
env: PPSSPP_BUILD_TYPE=Linux
- os: linux
compiler: "gcc"
env: PPSSPP_BUILD_TYPE=Android
APP_ABI=arm64-v8a
- os: linux
compiler: "gcc"
env: PPSSPP_BUILD_TYPE=Android
APP_ABI=armeabi-v7a
- os: linux
compiler: "gcc"
env: PPSSPP_BUILD_TYPE=Android
APP_ABI=x86
- os: linux
compiler: "gcc"
env: PPSSPP_BUILD_TYPE=Android
APP_ABI=x86_64
- os: linux
compiler: "clang"
env: PPSSPP_BUILD_TYPE=Linux
- os: linux
compiler: "gcc"
env: PPSSPP_BUILD_TYPE=Linux
QT=TRUE
- os: linux
compiler: "gcc"
env: PPSSPP_BUILD_TYPE=Linux
LIBRETRO=TRUE
- os: linux
compiler: "clang"
env: PPSSPP_BUILD_TYPE=Linux
LIBRETRO=TRUE
- os: osx
osx_image: xcode8.3
compiler: "clang"
env: PPSSPP_BUILD_TYPE=macOS
- os: osx
osx_image: xcode8.3
compiler: "clang"
env: PPSSPP_BUILD_TYPE=iOS
- os: windows
compiler: "msvc2017"
env: PPSSPP_BUILD_TYPE=Windows
before_install:
- travis_retry bash .travis.sh travis_before_install
install:
- travis_retry bash .travis.sh travis_install
script:
- bash .travis.sh travis_script
after_success:
- bash .travis.sh travis_after_success