From 67066320999e136a70fb8b996469fab69e44fd97 Mon Sep 17 00:00:00 2001 From: Georg Krause <mail@georg-krause.net> Date: Thu, 27 Oct 2022 19:53:07 +0200 Subject: [PATCH] chore(CI): Simplify configuration and add stable python 3.11 --- .gitlab-ci.yml | 27 ++++----------------------- 1 file changed, 4 insertions(+), 23 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 1677e60..3fb7902 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,27 +15,8 @@ services: after_script: - docker push $CI_REGISTRY_IMAGE:$PYTHON_VERSION -build-3.7: +build: + parallel: + matrix: + - PYTHON_VERSION: ["3.7", "3.8", "3.9", "3.10", "3.11"] extends: .build - variables: - PYTHON_VERSION: "3.7" - -build-3.8: - extends: .build - variables: - PYTHON_VERSION: "3.8" - -build-3.9: - extends: .build - variables: - PYTHON_VERSION: "3.9" - -build-3.10: - extends: .build - variables: - PYTHON_VERSION: "3.10" - -build-3.11: - extends: .build - variables: - PYTHON_VERSION: "3.11-rc" -- GitLab