forked from guillep/old-pharo-vm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
50 lines (47 loc) · 1.12 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
language: c
os:
- linux
# disable osx for the moment
# - osx
addons:
apt:
packages:
# this are to be able to execute a VM downloaded from the internet during build
- lib32asound2
- lib32z1
- lib32ncurses5
- lib32bz2-1.0
- gvfs-daemons:i386
# this are requirements for building the vm
- cmake
- zip
- bash-completion
- git
- xz-utils
- debhelper
- devscripts
- libc6-dev:i386
- libasound2:i386
- libasound2-dev:i386
- libssl-dev:i386
- libssl0.9.8:i386
- libfreetype6-dev:i386
- libx11-dev:i386
- libsm-dev:i386
- libice-dev:i386
- libgl1-mesa-glx:i386
- libgl1-mesa-dev:i386
- libxext-dev:i386
- libglapi-mesa:i386
- build-essential
- gcc-multilib
- g++
script:
- scripts/build.sh
- scripts/test.sh
matrix:
# Ignore failures with OSX as the build forces to be build for OSX 10.6 and
# the header files are not installed and we can't install them on OSX. This
# could be easily fixed with a different CMakeLists.txt
# allow_failures:
# - os: osx