From 89772d726fb658f7bd3faa7a8c38a3644c1814bd Mon Sep 17 00:00:00 2001 From: Yonggang Luo Date: Mon, 8 Aug 2022 00:40:31 +0800 Subject: [PATCH] ci: Add debian-clang-release build pipeline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As the default build type is debug according to .gitlab-ci/meson/build.sh, the specified line is: -D buildtype=${BUILDTYPE:-debug} So we use release for building optimized version for testing if the compiler optimization are fine. Signed-off-by: Yonggang Luo Reviewed-by: Michel Dänzer Part-of: --- .gitlab-ci/build/gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci/build/gitlab-ci.yml b/.gitlab-ci/build/gitlab-ci.yml index 361d4972cee..99b6a131606 100644 --- a/.gitlab-ci/build/gitlab-ci.yml +++ b/.gitlab-ci/build/gitlab-ci.yml @@ -445,6 +445,11 @@ debian-clang: CC: clang CXX: clang++ +debian-clang-release: + extends: debian-clang + variables: + BUILDTYPE: "release" + windows-vs2019: extends: - .build-windows