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 0733530FBF for ; Fri, 7 Jun 2019 10:37:56 -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 W6orc7ZZvyXX for ; Fri, 7 Jun 2019 10:37:55 -0400 (EDT) Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (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 43CF230F4F for ; Fri, 7 Jun 2019 10:37:55 -0400 (EDT) From: "Alexander V. Tikhonov" Subject: [tarantool-patches] [PATCH v1] travis-ci: needs blind install for brew python2 Date: Fri, 7 Jun 2019 17:37:50 +0300 Message-Id: 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..5c4537d5e 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 + brew install python2 --force || true curl --silent --show-error --retry 5 https://bootstrap.pypa.io/get-pip.py | python pip install -r test-run/requirements.txt -- 2.17.1