From 83966216f3c61b29ad9141f162a67d140d7a57b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ernst=20W=C3=BCrger?= Date: Thu, 25 Jul 2024 13:02:08 +0200 Subject: [PATCH] fix: Remove obsolete `.gitlab-ci.yml` (#45) --- .gitlab-ci.yml | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index f81710ac..00000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright DB InfraGO AG and contributors -# SPDX-License-Identifier: Apache-2.0 - -stages: - - build - - test - - deploy - -wheel: - stage: build - extends: .wheel - -coverage: - stage: test - extends: .coverage - variables: - COVERAGE_SOURCE: polarion_rest_api_client - needs: [] - -pre-commit: - stage: test - extends: .pre-commit - needs: [] - -artifactory: - stage: deploy - extends: .artifactory - needs: - - job: wheel - artifacts: true - - job: coverage - - job: pre-commit - rules: - - if: $CI_COMMIT_TAG - - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH - -include: - - project: "se-toolchain/ci-templates-docker" - ref: master - file: - - "/gitlab-ci/docker/upload-registry.yml" - - "/gitlab-ci/generic/pre-commit.yml" - - "/gitlab-ci/python/sphinx.yml" - - "/gitlab-ci/python/test.yml" - - "/gitlab-ci/python/wheel.yml"