From a80608200db2e1d30b9003ca9a785f7bd465bb01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Wed, 23 Aug 2023 07:46:27 +0200 Subject: [PATCH] Disable tracing in the FIPS enabled builds The dtrace command fails with segmentation fault in the FIPS-enabled builds, thus we need to disable the tracing in the CI for the FIPS jobs. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 118d8deca6..1dd538519e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -731,7 +731,7 @@ gcc:8fips:amd64: variables: CC: gcc CFLAGS: "${CFLAGS_COMMON}" - EXTRA_CONFIGURE: "--with-libidn2 --enable-fips-mode" + EXTRA_CONFIGURE: "--with-libidn2 --enable-fips-mode --disable-tracing" <<: *oraclelinux_8fips_amd64_image <<: *build_job <<: *api_schedules_tags_triggers_web_triggering_rules @@ -756,7 +756,7 @@ gcc:9fips:amd64: variables: CC: gcc CFLAGS: "${CFLAGS_COMMON}" - EXTRA_CONFIGURE: "--with-libidn2 --enable-fips-mode --disable-leak-detection" + EXTRA_CONFIGURE: "--with-libidn2 --enable-fips-mode --disable-leak-detection --disable-tracing" <<: *oraclelinux_9fips_amd64_image <<: *build_job <<: *api_schedules_tags_triggers_web_triggering_rules