From 95d2d8399a02833553e39e6be943a47e3d4c5ce0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Wed, 25 Mar 2020 16:31:59 +0100 Subject: [PATCH] Replace clang:stretch:amd64 build with clang:buster:amd64 build (+ add missing system test) (cherry picked from commit 281531d82bab6d8d6eceb0937b4ca100fd20a2ff) --- .gitlab-ci.yml | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c3c40e8dbd..046a720a8d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1027,21 +1027,28 @@ unit:mutexatomics: - job: mutexatomics artifacts: true -# Jobs for Clang builds on Debian Stretch (amd64) +# Jobs for Clang builds on Debian Buster (amd64) -clang:stretch:amd64: +clang:buster:amd64: variables: CC: ${CLANG} CFLAGS: "${CFLAGS_COMMON} -Wenum-conversion" EXTRA_CONFIGURE: "--with-python=python3" - <<: *debian_stretch_amd64_image + <<: *debian_buster_amd64_image <<: *build_job -unit:clang:stretch:amd64: - <<: *debian_stretch_amd64_image +system:clang:buster:amd64: + <<: *debian_buster_amd64_image + <<: *system_test_job + needs: + - job: clang:buster:amd64 + artifacts: true + +unit:clang:buster:amd64: + <<: *debian_buster_amd64_image <<: *unit_test_job needs: - - job: clang:stretch:amd64 + - job: clang:buster:amd64 artifacts: true # Jobs for nocrypto builds