From 53e3f831c3f06023e9d6c60cbc16dd21c54d0de6 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Sun, 15 Apr 2018 11:43:51 +0200 Subject: [PATCH] .gitlab-ci.yml: added explicit XFAIL_TESTS for known issues That prevents other regressions from sneaking in, and allows using the CI for development. Signed-off-by: Nikos Mavrogiannopoulos --- .gitlab-ci.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a4ebdf4..73712a0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,8 +17,8 @@ CentOS7/GnuTLS: - ./autogen.sh - ./configure --with-java CFLAGS=-g - make -j4 - # XFAIL the auth-pkcs11 test because GnuTLS 3.3.8 doesn't support pin-value - - make VERBOSE=1 -j4 check +# UTF-8 support is not available + - make VERBOSE=1 XFAIL_TESTS="auth-nonascii" -j4 check tags: - shared except: @@ -46,7 +46,8 @@ CentOS7/OpenSSL: - ./autogen.sh - ./configure --without-gnutls --with-openssl --with-java --without-openssl-version-check --enable-dtls-xfail --disable-dsa-tests CFLAGS=-g - make -j4 - - make VERBOSE=1 -j4 check +# UTF-8 support is not available + - make VERBOSE=1 XFAIL_TESTS="auth-nonascii" -j4 check tags: - shared except: @@ -74,7 +75,8 @@ CentOS6/OpenSSL: - ./autogen.sh - ./configure --with-java --without-openssl-version-check --enable-dtls-xfail CFLAGS=-g - make -j4 - - make VERBOSE=1 -j4 check +# UTF-8 support is not available + - make VERBOSE=1 XFAIL_TESTS="bad_dtls_test auth-nonascii" -j4 check tags: - shared except: -- 2.16.3