dbus: fix 64-bit compiler warnings
[platform/upstream/dbus.git] / tools / ci-install.sh
1 #!/bin/bash
2
3 # Copyright © 2015-2016 Collabora Ltd.
4 #
5 # Permission is hereby granted, free of charge, to any person
6 # obtaining a copy of this software and associated documentation files
7 # (the "Software"), to deal in the Software without restriction,
8 # including without limitation the rights to use, copy, modify, merge,
9 # publish, distribute, sublicense, and/or sell copies of the Software,
10 # and to permit persons to whom the Software is furnished to do so,
11 # subject to the following conditions:
12 #
13 # The above copyright notice and this permission notice shall be
14 # included in all copies or substantial portions of the Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 # BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 # ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 # SOFTWARE.
24
25 set -euo pipefail
26 set -x
27
28 NULL=
29
30 # ci_distro:
31 # OS distribution in which we are testing
32 # Typical values: ubuntu, debian; maybe fedora in future
33 : "${ci_distro:=ubuntu}"
34
35 # ci_docker:
36 # If non-empty, this is the name of a Docker image. ci-install.sh will
37 # fetch it with "docker pull" and use it as a base for a new Docker image
38 # named "ci-image" in which we will do our testing.
39 : "${ci_docker:=}"
40
41 # ci_host:
42 # Either "native", or an Autoconf --host argument to cross-compile
43 # the package
44 : "${ci_host:=native}"
45
46 # ci_in_docker:
47 # Used internally by ci-install.sh. If yes, we are inside the Docker image
48 # (ci_docker is empty in this case).
49 : "${ci_in_docker:=no}"
50
51 # ci_suite:
52 # OS suite (release, branch) in which we are testing.
53 # Typical values for ci_distro=debian: sid, jessie
54 # Typical values for ci_distro=fedora might be 25, rawhide
55 : "${ci_suite:=xenial}"
56
57 if [ $(id -u) = 0 ]; then
58     sudo=
59 else
60     sudo=sudo
61 fi
62
63 if [ -n "$ci_docker" ]; then
64     sed \
65         -e "s/@ci_distro@/${ci_distro}/" \
66         -e "s/@ci_docker@/${ci_docker}/" \
67         -e "s/@ci_suite@/${ci_suite}/" \
68         < tools/ci-Dockerfile.in > Dockerfile
69     exec docker build -t ci-image .
70 fi
71
72 case "$ci_distro" in
73     (debian|ubuntu)
74         # Don't ask questions, just do it
75         sudo="$sudo env DEBIAN_FRONTEND=noninteractive"
76
77         # Debian Docker images use httpredir.debian.org but it seems to be
78         # unreliable; use a CDN instead
79         $sudo sed -i -e 's/httpredir\.debian\.org/deb.debian.org/g' \
80             /etc/apt/sources.list
81
82         case "$ci_suite" in
83             (xenial)
84                 # Ubuntu 16.04 didn't have the wine32, wine64 packages
85                 wine32=wine:i386
86                 wine64=wine:amd64
87                 ;;
88             (*)
89                 wine32=wine32
90                 wine64=wine64
91                 ;;
92         esac
93
94         case "$ci_host" in
95             (i686-w64-mingw32)
96                 $sudo dpkg --add-architecture i386
97                 ;;
98             (x86_64-w64-mingw32)
99                 # assume the host or container is x86_64 already
100                 ;;
101         esac
102
103         $sudo apt-get -qq -y update
104
105         case "$ci_host" in
106             (i686-w64-mingw32)
107                 $sudo apt-get -qq -y install \
108                     binutils-mingw-w64-i686 \
109                     g++-mingw-w64-i686 \
110                     $wine32 \
111                     ${NULL}
112                 ;;
113             (x86_64-w64-mingw32)
114                 $sudo apt-get -qq -y install \
115                     binutils-mingw-w64-x86-64\
116                     g++-mingw-w64-x86-64 \
117                     $wine64 \
118                     ${NULL}
119                 ;;
120         esac
121
122         $sudo apt-get -qq -y install \
123             autoconf-archive \
124             automake \
125             autotools-dev \
126             ccache \
127             cmake \
128             debhelper \
129             dh-autoreconf \
130             dh-exec \
131             doxygen \
132             dpkg-dev \
133             gnome-desktop-testing \
134             libapparmor-dev \
135             libaudit-dev \
136             libcap-ng-dev \
137             libexpat-dev \
138             libglib2.0-dev \
139             libselinux1-dev \
140             libsystemd-dev \
141             libx11-dev \
142             python \
143             python-dbus \
144             python-gi \
145             valgrind \
146             wget \
147             xauth \
148             xmlto \
149             xsltproc \
150             xvfb \
151             ${NULL}
152
153         if [ "$ci_in_docker" = yes ]; then
154             # Add the user that we will use to do the build inside the
155             # Docker container, and let them use sudo
156             adduser --disabled-password user </dev/null
157             apt-get -y install sudo
158             echo "user ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/nopasswd
159             chmod 0440 /etc/sudoers.d/nopasswd
160         fi
161
162         case "$ci_suite" in
163             (jessie|xenial)
164                 # autoconf-archive in Debian 8 and Ubuntu 16.04 is too old,
165                 # use the one from Debian 9 instead
166                 wget http://deb.debian.org/debian/pool/main/a/autoconf-archive/autoconf-archive_20160916-1_all.deb
167                 $sudo dpkg -i autoconf-archive_*_all.deb
168                 rm autoconf-archive_*_all.deb
169                 ;;
170
171             (stretch)
172                 # Debian 9 'stretch' didn't have the ducktype package
173                 ;;
174
175             (*)
176                 # assume Ubuntu 18.04 'bionic', Debian 10 'buster' or newer
177                 $sudo apt-get -qq -y install ducktype
178                 ;;
179         esac
180         ;;
181
182     (*)
183         echo "Don't know how to set up ${ci_distro}" >&2
184         exit 1
185         ;;
186 esac
187
188 # vim:set sw=4 sts=4 et: