summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrediano Ziglio <freddy77@gmail.com>2023-05-10 11:19:39 +0100
committerFrediano Ziglio <freddy77@gmail.com>2023-05-10 14:33:09 +0100
commit313932ea0202650eb8e7783f1fd476e849d96314 (patch)
tree337385d9742f3cb5fc8385604a22eb66506eed93
parente625a10a7a3104514a8bd56ee3ca36d8d9b1cf33 (diff)
ci: Remove broken OpenSSL configuration to fix makecheck-windows job
The configuration installed with mingw64-openssl cause OpenSSL to fail to initialize during execution with Wine. Delete it and use the compiled in options. Signed-off-by: Frediano Ziglio <freddy77@gmail.com>
-rw-r--r--.gitlab-ci.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0ceb12d6..36dbafb5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -163,6 +163,8 @@ makecheck-windows:
- 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
+ # Remove configuration otherwise OpenSSL initialization will fail
+ - rm -f /usr/x86_64-w64-mingw32/sys-root/mingw/etc/pki/tls/openssl.cnf
- (cd server && exec mingw64-make LOG_COMPILE=wine check) || (cat server/tests/test-suite.log && exit 1)
websocket-autobahn: