summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrediano Ziglio <freddy77@gmail.com>2022-07-18 21:17:41 +0100
committerFrediano Ziglio <freddy77@gmail.com>2022-07-19 10:13:25 +0100
commit3153ce81f8f1c9fd5cd703d9f1d936fdc42678a4 (patch)
treede7977b52ec3b274772eeb0d7a7b8e206575b80c
parentacfa6f6bf8f01fe3b589af202ca9ca397ba00721 (diff)
ci: Fix Windows
Provides LANG to avoid error detecting encoding. Install all Wine package, installing only core is not enough. Signed-off-by: Frediano Ziglio <freddy77@gmail.com>
-rw-r--r--.gitlab-ci.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 844e1691..f9ad4a29 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -150,7 +150,7 @@ makecheck-windows:
script:
- >
dnf install -y
- wine-core.x86_64 mingw64-gcc-c++
+ wine mingw64-gcc-c++
mingw64-openssl mingw64-glib2 mingw64-glib-networking mingw64-libjpeg-turbo
mingw64-pixman mingw64-opus mingw64-winpthreads mingw64-zlib
mingw64-gstreamer1-plugins-base mingw64-gstreamer1-plugins-good mingw64-orc
@@ -162,6 +162,7 @@ makecheck-windows:
- mingw64-make
- export G_TLS_GNUTLS_PRIORITY="NORMAL:%COMPAT"
- export WINEPATH='Z:\usr\x86_64-w64-mingw32\sys-root\mingw\bin'
+ - export LANG=en_US.UTF-8
- (cd server && exec mingw64-make LOG_COMPILE=wine check) || (cat server/tests/test-suite.log && exit 1)
websocket-autobahn: