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 AF8DC2AA37 for ; Fri, 7 Jun 2019 11:10:50 -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 5FiwrW-g_dwJ for ; Fri, 7 Jun 2019 11:10:50 -0400 (EDT) Received: from smtpng1.m.smailru.net (smtpng1.m.smailru.net [94.100.181.251]) (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 739112AA2E for ; Fri, 7 Jun 2019 11:10:50 -0400 (EDT) From: "Alexander V. Tikhonov" Subject: [tarantool-patches] [PATCH v2] travis-ci: needs blind install for brew python2 Date: Fri, 7 Jun 2019 18:10:46 +0300 Message-Id: <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: Kirill Yukhin Cc: "Alexander V. Tikhonov" , Alexander Turenko , tarantool-patches@freelists.org Travis-ci failed on brew install python2 due to it was allready installed on OSX 10.13 Sierra, so it needs to be installed without fails on its exists. Closes #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