From 9ca6cfaa94a94eecedd29680957509cc0f36005a Mon Sep 17 00:00:00 2001
From: Christian Hueser <c.hueser@hzdr.de>
Date: Tue, 28 Mar 2023 07:48:14 +0200
Subject: [PATCH] Upgrade Python and Gcc Docker images used

* To fix the CI pipeline the Docker images are upgraded.
---
 .gitlab/ci/common.gitlab-ci.yml | 4 ++--
 .gitlab/ci/run.gitlab-ci.yml    | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab/ci/common.gitlab-ci.yml b/.gitlab/ci/common.gitlab-ci.yml
index 4e0b0ac..5532bfa 100644
--- a/.gitlab/ci/common.gitlab-ci.yml
+++ b/.gitlab/ci/common.gitlab-ci.yml
@@ -12,7 +12,7 @@ stages:
   - run
 
 default:
-  image: python:3.10
+  image: python:3.11
   interruptible: true
 
 .install_dependencies:
@@ -23,6 +23,6 @@ default:
 .compiler_versions:
   parallel:
     matrix:
-      - VERSION: [ "10", "11", "12" ]
+      - VERSION: [ "11", "12" ]
 
 ...
diff --git a/.gitlab/ci/run.gitlab-ci.yml b/.gitlab/ci/run.gitlab-ci.yml
index 58bbaf8..ba95847 100644
--- a/.gitlab/ci/run.gitlab-ci.yml
+++ b/.gitlab/ci/run.gitlab-ci.yml
@@ -6,7 +6,7 @@
 ---
 
 run:
-  image: gcc:11
+  image: gcc:12
   stage: run
   script:
     - cd build_gcc_11/bin/ && ./helloWorld
-- 
GitLab