1#!/bin/bash 2 3set -e 4set -o xtrace 5 6# Installing wine, need this for testing mingw or nine 7 8# We need multiarch for Wine 9dpkg --add-architecture i386 10apt-get update 11apt-get install -y --no-remove \ 12 wine \ 13 wine32 \ 14 wine64 \ 15 xvfb 16 17# Used to initialize the Wine environment to reduce build time 18wine64 whoami.exe 19 20