From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp50.i.mail.ru (smtp50.i.mail.ru [94.100.177.110]) (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 54E1E4696C3 for ; Wed, 29 Apr 2020 11:15:19 +0300 (MSK) Date: Wed, 29 Apr 2020 11:15:08 +0300 From: Sergey Bronnikov Message-ID: <20200429081508.GA19796@pony.bronevichok.ru> References: <1c95097d462467058b5c7250ebc63967a90ba00a.1588084952.git.avtikhon@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1c95097d462467058b5c7250ebc63967a90ba00a.1588084952.git.avtikhon@tarantool.org> Subject: Re: [Tarantool-patches] [PATCH v1] Add Ubuntu Focal 20.04 packages 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 Hi, thanks for the patch! LGTM On 17:43 Tue 28 Apr , Alexander V. Tikhonov wrote: > Added gitlab-ci and travis-ci packages creation > for Ubuntu Focal 20.04. > --- > > Github: https://github.com/tarantool/tarantool/tree/avtikhon/add-ubuntu-focal-deploy-full-ci > > .gitlab-ci.yml | 12 ++++++++++++ > .travis.yml | 3 +++ > 2 files changed, 15 insertions(+) > > diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml > index fd265aa60..b3b07dac5 100644 > --- a/.gitlab-ci.yml > +++ b/.gitlab-ci.yml > @@ -334,6 +334,12 @@ ubuntu_19_10: > OS: 'ubuntu' > DIST: 'eoan' > > +ubuntu_20_04: > + <<: *pack_definition > + variables: > + OS: 'ubuntu' > + DIST: 'focal' > + > debian_8: > <<: *pack_definition > variables: > @@ -425,6 +431,12 @@ ubuntu_19_10_deploy: > OS: 'ubuntu' > DIST: 'eoan' > > +ubuntu_20_04_deploy: > + <<: *deploy_definition > + variables: > + OS: 'ubuntu' > + DIST: 'focal' > + > debian_8_deploy: > <<: *deploy_definition > variables: > diff --git a/.travis.yml b/.travis.yml > index 3b9415def..dfe12fc09 100644 > --- a/.travis.yml > +++ b/.travis.yml > @@ -67,6 +67,9 @@ jobs: > - name: "Ubuntu Eoan (19.10) build + deploy DEB" > env: OS=ubuntu DIST=eoan > if: branch = "master" > + - name: "Ubuntu Focal (20.04) build + deploy DEB" > + env: OS=ubuntu DIST=focal > + if: branch = "master" > - name: "Debian Jessie (8) build + deploy DEB" > env: OS=debian DIST=jessie > if: branch = "master" > -- > 2.17.1 > -- sergeyb@