diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3d8db7c265cd8eccb8c99ef2f71f7b260ac33c44..4b6ad45482e2822ee44f6658e135813e8fdf3b69 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