From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng1.m.smailru.net (smtpng1.m.smailru.net [94.100.181.251]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 167AF46970E for ; Mon, 3 Feb 2020 16:45:06 +0300 (MSK) Date: Mon, 3 Feb 2020 16:45:19 +0300 From: Alexander Turenko Message-ID: <20200203134518.mzt2l4h222rz2w3g@tkn_work_nb> References: <5c7b8f38b3d67bd79b129f46be4aeed4d709f15a.1580581971.git.avtikhon@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <5c7b8f38b3d67bd79b129f46be4aeed4d709f15a.1580581971.git.avtikhon@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH v9] gitlab-ci: push Deb/RPM packages to S3 based repos List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Alexander V. Tikhonov" Cc: Oleg Piskunov , tarantool-patches@dev.tarantool.org > diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml > index 3af5a3c8a..8d2a15ce8 100644 > --- a/.gitlab-ci.yml > +++ b/.gitlab-ci.yml > @@ -8,9 +8,24 @@ variables: > > .release_only_template: &release_only_definition > only: > - refs: > - - master > - - /^.*-full-ci$/ > + - master > + > +.fullci_only_template: &fullci_only_definition > + only: > + - /^.*-full-ci$/ > + > +.deploy_only_template: &deploy_only_definition > + only: > + - master > + except: > + - external_pull_requests > + - merge_requests > + > +.pack_only_template: &pack_only_definition > + only: > + - external_pull_requests > + - merge_requests > + - /^.*-full-ci$/ Schedule jobs still not handled: https://gitlab.com/help/user/project/pipelines/schedules#using-only-and-except master / release branches in different repos is not handled too, but okay, it is not much important, because forking on GitHub do not enable GitLab CI for the forked repository (unlike Travis-CI).