From 4f62763ce52eb71361e6fc8300da9186a2709e90 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Sat, 17 Jul 2021 06:18:37 +0200 Subject: [PATCH] ci(gitlab-ci): use templates from a common repository --- .gitlab-ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ef4318b..7d04574 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,14 +15,11 @@ include: - "templates/lint/yamllint.yml" # will do the equivalent of 'tox -e yamllint' - "templates/tests/py27.yml" # will do the equivalent of 'tox -e py27' - "templates/tests/py3.yml" # will do the equivalent of 'tox -e py3' - - "templates/build-debian-package.yml" # will build a .deb and upload it to heptapod files - - "templates/create-release-on-heptapod-including-debian-package.yml" # this will create a release on heptapod AND uses uploaded .deb by build-debian-package + - "templates/create-release-on-heptapod.yml" # this will create a release on heptapod - "templates/upload-to-pypi.yml" # on a new mercurial tag (expected to be done with release-new), will push a release on pypi stages: - lint - tests - - build-debian-package - - upload-deb-to-heptapod - release - publish -- GitLab