From: Simon McVittie Date: Wed, 3 Oct 2018 16:51:49 +0000 (+0100) Subject: ci: Teach ci-install.sh to install wine on Debian 9 'stretch' X-Git-Tag: dbus-1.12.22~4^2~19 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=787b9e963347dd26804dabe466038b0329efe0fc;p=thirdparty%2Fdbus.git ci: Teach ci-install.sh to install wine on Debian 9 'stretch' Signed-off-by: Simon McVittie Bug: https://bugs.freedesktop.org/show_bug.cgi?id=108177 Acked-by: Philip Withnall (cherry picked from commit 408b222a9fc61327cd7be385b6705f30f0c38802) --- diff --git a/tools/ci-install.sh b/tools/ci-install.sh index 8f6be3380..783b34bb1 100755 --- a/tools/ci-install.sh +++ b/tools/ci-install.sh @@ -95,6 +95,18 @@ case "$ci_distro" in ;; esac + case "$ci_suite" in + (trusty) + # Ubuntu 14.04 didn't have the wine32, wine64 packages + wine32=wine:i386 + wine64=wine:amd64 + ;; + (*) + wine32=wine32 + wine64=wine64 + ;; + esac + case "$ci_host" in (i686-w64-mingw32) $sudo dpkg --add-architecture i386