From d7e66ab99c051776af09616a0a02b8814d8acad7 Mon Sep 17 00:00:00 2001 From: jakob Date: Wed, 16 Oct 2024 09:01:17 +0200 Subject: [PATCH] [ci] Switch GitlabCI build image to GCC 9 The GCC 8 image (based on Debian Buster) is too old to support the required minimum CMake version 3.18, but the GCC 9 image (based on Debian Bullseye) has v3.18.4. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b0020068..d21303eb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: gcc:8 +image: gcc:9 build: stage: build