-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (29 loc) · 898 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
os:
- linux
before_install:
- "export DISPLAY=:99.0"
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
before_script:
- sudo add-apt-repository -y ppa:ubuntu-wine/ppa
- sudo add-apt-repository -y ppa:rbose-debianizer/automake
- sudo apt-get update -qq
- sudo apt-get install -y autopoint
- sudo apt-get install -y automake1.12
- sudo apt-get install -y binutils-mingw-w64-i686
- sudo apt-get install -y gcc-mingw-w64-i686
- sudo apt-get install -y wine1.7
language: c
compiler:
- gcc
script:
- cd xz
- unset CC
- sudo update-binfmts --disable wine
- ./autogen.sh --host=i686-w64-mingw32
- ./configure --host=i686-w64-mingw32
- make
- sudo update-binfmts --enable wine
- wineboot
- export EXEEXT=.exe
- export WINEDEBUG=-all
- make check