From 461ffead1f45e0f5f8811d86c0d8452f25fc4ffc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Sat, 13 Oct 2018 11:39:55 +0200 Subject: [PATCH] Add a GitLab CI job that runs with all assertions disabled --- .gitlab-ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4c4ff60eb8..7d6cfef5e9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -394,3 +394,23 @@ pkcs11:systemtest:debian:sid:amd64: <<: *system_test_job dependencies: - pkcs11:build:debian:sid:amd64 + +noassert:build:debian:sid:amd64: + variables: + CC: gcc + CFLAGS: "-Wall -Wextra -O2 -g -DISC_CHECK_NONE=1" + EXTRA_CONFIGURE: "--with-libidn2" + <<: *debian_sid_amd64_image + <<: *build_job + +noassert:unittest:debian:sid:amd64: + <<: *debian_sid_amd64_image + <<: *unit_test_job + dependencies: + - noassert:build:debian:sid:amd64 + +noassert:systemtest:debian:sid:amd64: + <<: *debian_sid_amd64_image + <<: *system_test_job + dependencies: + - noassert:build:debian:sid:amd64