From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtpng2.m.smailru.net (smtpng2.m.smailru.net [94.100.179.3]) (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 5B3BE43D678 for ; Thu, 24 Oct 2019 14:14:03 +0300 (MSK) From: "Alexander V. Tikhonov" Date: Thu, 24 Oct 2019 14:14:01 +0300 Message-Id: <276fcdcdcf340ba0b278524de7a90e12363d0a11.1571915596.git.avtikhon@tarantool.org> Subject: [Tarantool-patches] [PATCH v2] gitlab-ci: add ubuntu 19.10 List-Id: Tarantool development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Turenko Cc: tarantool-patches@freelists.org, tarantool-patches@dev.tarantool.org Added Ubuntu 19.10 Eoan Ermine into CI. Close #4583 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-4583-ubuntu1910-full-ci Issue: https://github.com/tarantool/tarantool/issues/4583 .gitlab-ci.yml | 6 ++++++ .travis.yml | 3 +++ 2 files changed, 9 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 431730b67..cd5f2806f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -200,6 +200,12 @@ ubuntu_19_04: OS: 'ubuntu' DIST: 'disco' +ubuntu_19_10: + <<: *deploy_definition + variables: + OS: 'ubuntu' + DIST: 'eoan' + debian_8: <<: *deploy_definition variables: diff --git a/.travis.yml b/.travis.yml index a98ebcdca..db7d80bd2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -67,6 +67,9 @@ jobs: - name: "Ubuntu Disco (19.04) build + deploy DEB" env: OS=ubuntu DIST=disco if: branch = "master" + - name: "Ubuntu Eoan (19.10) build + deploy DEB" + env: OS=ubuntu DIST=eoan + if: branch = "master" - name: "Debian Jessie (8) build + deploy DEB" env: OS=debian DIST=jessie if: branch = "master" -- 2.17.1