From 83635cdde1097c665c72a1e4b2932102ea7e9c95 Mon Sep 17 00:00:00 2001 From: plup Date: Wed, 26 Feb 2020 13:41:21 +0100 Subject: [PATCH] cicd: removed gitlab CI config --- .gitlab-ci.yml | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index c86fdd3..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,30 +0,0 @@ ---- -image: python:3.6 - -stages: - - test - - release - -test: - stage: test - script: - - echo 'Make your tests here !' - except: - - master - tags: - - sib - -publish: - stage: release - before_script: - - git config user.name "${GITLAB_USER_NAME}" - - git config user.email "${GITLAB_USER_EMAIL}" - - git remote set-url origin "https://gitlab-ci-token:${GL_TOKEN}@git.happy-dev.fr/${CI_PROJECT_PATH}.git" - - pip install git+https://github.com/plup/python-semantic-release - - pip install sib-commit-parser - script: - - semantic-release publish - only: - - do_not_publish - tags: - - sib