~mmach/netext73/mesa_2004

« back to all changes in this revision

Viewing changes to .gitlab-ci/container/debian/x86_build-base-wine.sh

  • Committer: mmach
  • Date: 2023-03-27 18:58:21 UTC
  • Revision ID: netbit73@gmail.com-20230327185821-ozduw10kmfvwg70q
23

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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