From 90b79611cabda7317719df1bbeba975551549688 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20W=C3=B6lzer?= <martin@libclapp.org>
Date: Mon, 16 Aug 2021 12:16:16 +0200
Subject: [PATCH] .gitlab-ci.yml: added test for empty CMAKE_BUILD_TYPE

---
 .gitlab-ci.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9707aacd..c94f3c19 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -361,11 +361,11 @@ compile_install_debian_10_amd64:
         - debian-10-amd64
     parallel:
         matrix:
-            - BUILD_TYPE: [Debug, Release]
+            - BUILD_TYPE: ["Debug", "Release", ""]
               COMPILER: clang
               COMPILER_VERSION: [7]
               GENERATOR: ["Unix Makefiles", "Ninja"]
-            - BUILD_TYPE: [Debug, Release]
+            - BUILD_TYPE: ["Debug", "Release", ""]
               COMPILER: gcc
               COMPILER_VERSION: [7, 8]
               GENERATOR: ["Unix Makefiles", "Ninja"]
@@ -377,11 +377,11 @@ compile_install_debian_10_arm64:
         - debian-10-arm64
     parallel:
         matrix:
-            - BUILD_TYPE: [Debug, Release]
+            - BUILD_TYPE: ["Debug", "Release", ""]
               COMPILER: clang
               COMPILER_VERSION: [7]
               GENERATOR: ["Unix Makefiles", "Ninja"]
-            - BUILD_TYPE: [Debug, Release]
+            - BUILD_TYPE: ["Debug", "Release", ""]
               COMPILER: gcc
               COMPILER_VERSION: [7, 8]
               GENERATOR: ["Unix Makefiles", "Ninja"]
@@ -393,11 +393,11 @@ compile_install_debian_10_armhf:
         - debian-10-armhf
     parallel:
         matrix:
-            - BUILD_TYPE: [Debug, Release]
+            - BUILD_TYPE: ["Debug", "Release", ""]
               COMPILER: clang
               COMPILER_VERSION: [7]
               GENERATOR: ["Unix Makefiles", "Ninja"]
-            - BUILD_TYPE: [Debug, Release]
+            - BUILD_TYPE: ["Debug", "Release", ""]
               COMPILER: gcc
               COMPILER_VERSION: [7, 8]
               GENERATOR: ["Unix Makefiles", "Ninja"]
-- 
GitLab