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 BB60530BEE for ; Fri, 7 Jun 2019 12:28:51 -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 YqDy7wt0pIjQ for ; Fri, 7 Jun 2019 12:28:51 -0400 (EDT) Received: from smtp57.i.mail.ru (smtp57.i.mail.ru [217.69.128.37]) (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 742812F992 for ; Fri, 7 Jun 2019 12:28:51 -0400 (EDT) Date: Fri, 7 Jun 2019 19:28:29 +0300 From: Alexander Turenko Subject: [tarantool-patches] Re: [PATCH v2] travis-ci: needs blind install for brew python2 Message-ID: <20190607162828.c37vbnlzklmtuezi@tkn_work_nb> References: <13b940d317e6956a11e738d7d295c1d9635d79a9.1559920176.git.avtikhon@tarantool.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <13b940d317e6956a11e738d7d295c1d9635d79a9.1559920176.git.avtikhon@tarantool.org> 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: "Alexander V. Tikhonov" Cc: Kirill Yukhin , tarantool-patches@freelists.org Pushed to master and 2.1. WBR, Alexander Turenko. On Fri, Jun 07, 2019 at 06:58:10PM +0300, Alexander V. Tikhonov wrote: > Travis-ci failed on brew install python2 due to it was > allready installed on OSX 10.13 Sierra, so it needs Typo: allready -> already. > to be installed without fails on its exists. > > Closes #4254 It is already closed. I have changed it to 'Follow up #4254'. > --- > > Github: https://github.com/tarantool/tarantool/tree/avtikhon/fix-sierra-brew > Issue: https://github.com/tarantool/tarantool/issues/4254 > > .travis.mk | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/.travis.mk b/.travis.mk > index e3bf28c53..6d0c42207 100644 > --- a/.travis.mk > +++ b/.travis.mk > @@ -49,7 +49,8 @@ test_ubuntu: deps_ubuntu > > deps_osx: > brew update > - brew install python2 openssl readline curl icu4c --force > + brew install openssl readline curl icu4c --force > + python2 -V || brew install python2 --force > curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python > pip install -r test-run/requirements.txt > > -- > 2.17.1 >