From 552a9dc297e1798e30ecb0fc33dea1fe62e85a51 Mon Sep 17 00:00:00 2001 From: Patrik Dufresne Date: Wed, 4 Jul 2018 12:39:19 -0400 Subject: [PATCH] Remove pages and coverage step from CICD coverages won't be using github pages by sonar. As a first step, let remove obsolete steps. --- .gitlab-ci.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3d8db7c2..4b6ad454 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,7 +3,6 @@ image: ikus060/docker-debian-py2-py3:stretch stages: - test - publish -- pages # Upgrade python and install dependencies to avoid compiling from sources. before_script: @@ -121,24 +120,4 @@ github_push: script: - git push --force https://${GITHUB_USR}:${GITHUB_PWD}@github.com/ikus060/rdiffweb.git refs/remotes/origin/${CI_COMMIT_REF_NAME}:refs/heads/${CI_COMMIT_REF_NAME} - git push https://${GITHUB_USR}:${GITHUB_PWD}@github.com/ikus060/rdiffweb.git --tags - -coverage: - stage: publish - script: - - coverage combine .coverage.* - - coverage html - coverage: '/TOTAL.*(\d+%)/' - artifacts: - paths: - - htmlcov/ -pages: - stage: pages - dependencies: - - coverage - script: - - mv htmlcov/ public/ - artifacts: - paths: - - public - expire_in: 15 days -- GitLab