Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Work around SoftHSM lockup in CI
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
  • Loading branch information
dwmw2 committed May 15, 2020
1 parent 195bd74 commit f20f148
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .gitlab-ci.yml
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit f20f148

Please sign in to comment.