Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/8049 Reviewed-by: Yonggang Luo <luoyonggang@gmail.com> Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23282>
16 lines
275 B
Bash
16 lines
275 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o xtrace
|
|
|
|
# Installing wine, need this for testing mingw or nine
|
|
|
|
apt-get update
|
|
apt-get install -y --no-remove \
|
|
wine \
|
|
wine64 \
|
|
xvfb
|
|
|
|
# Used to initialize the Wine environment to reduce build time
|
|
wine wineboot.exe --init
|