diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2017-01-24 07:56:12 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-01-26 15:42:14 +0100 |
commit | fc890c44062e04c1f93ee8e388fe0935abe17812 (patch) | |
tree | aca7e87ed26e63215a6003a774f7f013b4a93aeb /.gitlab-ci.yml | |
parent | ccc0de196603b1cda0434c9fa1eeff48bd04fd54 (diff) | |
download | gnutls-fc890c44062e04c1f93ee8e388fe0935abe17812.tar.gz |
.gitlab-ci.yml: added run with IDNA2003
Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3ab3ce3502..5917a59114 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -86,6 +86,24 @@ Fedora/x86_64/FIPS140-2: - build/tests/*.log - build/tests/*/*.log +Fedora/x86_64/IDNA2003: + stage: stage1-testing + image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD + script: + - make autoreconf && mkdir -p build && cd build && + ../configure --without-libidn2 --disable-doc --disable-guile --disable-full-test-suite --disable-valgrind-tests && + make -j$(nproc) && make check -j$(nproc) + tags: + - shared + except: + - tags + artifacts: + when: on_failure + paths: + - guile/tests/*.log + - build/tests/*.log + - build/tests/*/*.log + Fedora/x86_64/valgrind: stage: stage1-testing image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD |