3e143ac54f6a672220fdc1e07c71066c75ee8669
[platform/upstream/mesa.git] / .gitlab-ci / container / debian / x86_build-base-wine.sh
1 #!/bin/bash
2
3 set -e
4 set -o xtrace
5
6 # Installing wine, need this for testing mingw or nine
7
8 apt-get update
9 apt-get install -y --no-remove \
10       wine \
11       wine64 \
12       xvfb
13
14 # Used to initialize the Wine environment to reduce build time
15 wine64 whoami.exe
16