From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id E20382C27C for ; Wed, 24 Apr 2019 07:05:26 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qEuRa68rbWOD for ; Wed, 24 Apr 2019 07:05:26 -0400 (EDT) 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 turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id A0BD62BE7A for ; Wed, 24 Apr 2019 07:05:26 -0400 (EDT) From: Alexander Turenko Subject: [tarantool-patches] [PATCH] travis-ci: add Debian Buster and Ubuntu Disco Date: Wed, 24 Apr 2019 14:05:14 +0300 Message-Id: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-Help: List-Unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-Subscribe: List-Owner: List-post: List-Archive: To: Kirill Yukhin Cc: Alexander Turenko , tarantool-patches@freelists.org Fixes #4174. --- Please, push to all currently supported long-term branches: master, 2.1 and 1.10. When cherry-picking it is important to replace 'if: branch = "master"' with appropriate branch. https://github.com/tarantool/tarantool/issues/4174 https://github.com/tarantool/tarantool/tree/Totktonada/add-new-distros Tarantool builds for the new distros successfully: https://travis-ci.org/tarantool/tarantool/builds/523710203 .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index 7840b8942..e30540837 100644 --- a/.travis.yml +++ b/.travis.yml @@ -72,12 +72,18 @@ jobs: - name: Ubuntu Cosmic (18.10) build + deploy DEB env: OS=ubuntu DIST=cosmic if: branch = "master" + - name: Ubuntu Disco (19.04) build + deploy DEB + env: OS=ubuntu DIST=disco + if: branch = "master" - name: Debian Jessie (8) build + deploy DEB env: OS=debian DIST=jessie if: branch = "master" - name: Debian Stretch (9) build + deploy DEB env: OS=debian DIST=stretch if: branch = "master" + - name: Debian Buster (10) build + deploy DEB + env: OS=debian DIST=buster + if: branch = "master" script: - make -f .travis.mk ${TARGET} -- 2.21.0