[Spice-commits] 2 commits - .gitlab-ci.yml
GitLab Mirror
gitlab-mirror at kemper.freedesktop.org
Mon Jul 20 15:35:57 UTC 2020
.gitlab-ci.yml | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
New commits:
commit 07f26241b835857bc05a15a02406fba0dd9e35e7
Author: Frediano Ziglio <freddy77 at gmail.com>
Date: Mon Jul 20 15:50:23 2020 +0100
ci: Set G_TLS_GNUTLS_PRIORITY environment for makecheck-windows job
This workaround an error from test-listen test under Windows
reporting:
GLib-Net-WARNING **: 09:24:25.152: Failed to set GnuTLS session priority with error beginning at %COMPAT: The request is invalid.
Signed-off-by: Frediano Ziglio <freddy77 at gmail.com>
Acked-by: Uri Lublin <ulublin at redhat.com>
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0693b2e5..22cdfbc8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -154,6 +154,7 @@ makecheck-windows:
- NOCONFIGURE=yes ./autogen.sh
- mingw64-configure
- mingw64-make
+ - export G_TLS_GNUTLS_PRIORITY="NORMAL:%COMPAT"
- mingw64-make LOG_COMPILE=wine -C server check || (cat server/tests/test-suite.log && exit 1)
websocket-autobahn:
commit c87bd86c4486a4d892aaedfa080da36037af71ba
Author: Frediano Ziglio <freddy77 at gmail.com>
Date: Mon Jul 13 11:38:02 2020 +0100
ci: Update Gitlab websocket-autobahn job for Fedora 32
Fedora 32 removed Python2 packages, we need to install compatibility
packages and install pip2 manually.
Autobahn test suite does not still support Python3.
Signed-off-by: Frediano Ziglio <freddy77 at gmail.com>
Acked-by: Uri Lublin <ulublin at redhat.com>
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 37cb5982..0693b2e5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -159,8 +159,10 @@ makecheck-windows:
websocket-autobahn:
script:
- >
- dnf install python2 python2-pip python2-devel python-unversioned-command
+ dnf install python27 python-unversioned-command curl
-y
+ - curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
+ - python2 get-pip.py
- pip2 install autobahntestsuite
- wstest -a
- >
More information about the Spice-commits
mailing list