Install mingw build-dependencies in a different order
[platform/upstream/dbus.git] / .travis.yml
1 sudo: required
2 dist: trusty
3 language: c
4 install:
5   # travis-ci has a sources list for Chrome which doesn't support i386
6   - ": | sudo tee /etc/apt/sources.list.d/google-chrome.list"
7   - test "$dbus_ci_host" != mingw || sudo dpkg --add-architecture i386
8   - sudo apt-get -qq -y update
9   - >
10     test "$dbus_ci_host" != mingw || sudo apt-get -qq -y install
11     binutils-mingw-w64-i686 g++-mingw-w64-i686 wine:i386
12   - sudo apt-get -qq -y build-dep dbus
13   - >
14     sudo apt-get -qq -y install
15     automake
16     autotools-dev
17     debhelper
18     dh-autoreconf
19     doxygen
20     dpkg-dev
21     gnome-desktop-testing
22     libapparmor-dev
23     libaudit-dev
24     libcap-ng-dev
25     libexpat-dev
26     libglib2.0-dev
27     libselinux1-dev
28     libx11-dev
29     python
30     python-dbus
31     python-gi
32     valgrind
33     xauth
34     xmlto
35     xsltproc
36     xvfb
37 script:
38   # python-dbus and python-gi aren't available to Travis's version of
39   # Python in /opt, which it uses as a default
40   - PYTHON=/usr/bin/python dbus_ci_parallel=2 dbus_ci_sudo=yes ./tools/ci-build.sh
41
42 env:
43   - dbus_ci_variant=release
44   - dbus_ci_variant=debug
45   - dbus_ci_variant=reduced
46   - dbus_ci_variant=legacy
47   - dbus_ci_buildsys=cmake
48   - dbus_ci_host=mingw
49   - dbus_ci_host=mingw dbus_ci_variant=debug
50   - dbus_ci_host=mingw dbus_ci_buildsys=cmake
51
52 # vim:set sw=2 sts=2 et: