From f20f148ae07d687491aabd790985b6387a47b373 Mon Sep 17 00:00:00 2001 From: David Woodhouse Date: Fri, 15 May 2020 10:31:27 +0100 Subject: [PATCH] Work around SoftHSM lockup in CI Signed-off-by: David Woodhouse --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3ad5cd80..097f09c1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -195,7 +195,8 @@ Fedora/GnuTLS: - cd openconnect-$(git describe --tags | sed s/^v//) - ./configure --with-java --disable-dsa-tests --without-gnutls-version-check CFLAGS=-g - make -j4 - - make VERBOSE=1 -j4 check + # Disable rdrand to work around https://bugzilla.redhat.com/1831086 + - make VERBOSE=1 OPENSSL_ia32cap=~0x4000000000000000 -j4 check tags: - shared except: @@ -224,7 +225,8 @@ Fedora/GnuTLS/clang: - cd openconnect-$(git describe --tags | sed s/^v//) - ./configure --with-java --disable-dsa-tests --without-gnutls-version-check CC=clang CFLAGS=-g - make -j4 - - make VERBOSE=1 -j4 check + # Disable rdrand to work around https://bugzilla.redhat.com/1831086 + - make VERBOSE=1 OPENSSL_ia32cap=~0x4000000000000000 -j4 check tags: - shared except: -- 2.50.1