From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp55.i.mail.ru (smtp55.i.mail.ru [217.69.128.35]) (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 B16FC4765E0 for ; Wed, 23 Dec 2020 18:51:42 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Wed, 23 Dec 2020 18:51:38 +0300 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH v1] gitlab-ci: set 2.6 version instead of master List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Oleg Koshovetc , Kirill Yukhin Cc: tarantool-patches@dev.tarantool.org Cc: tarantool-patches@dev.tarantool.org Found that branch checks in gitlab-ci jobs were not updated on creation 2.6 branch. This patch fixes it and sets 2.6 instead of master mask to be able to trigger jobs on changes in 2.6 branch. --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/gitlab-ci-2.6 .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 03a6295aa..6374b0d25 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,7 +55,7 @@ before_script: .deploy_only_template: &deploy_only_definition only: - - master + - "2.6" - tags except: - schedules @@ -64,12 +64,12 @@ before_script: .pack_only_template: &pack_only_definition except: - - master + - "2.6" - tags .perf_only_template: &perf_only_definition only: - - master + - "2.6" - tags - /^.*-perf$/ except: -- 2.25.1