Tarantool development patches archive
 help / color / mirror / Atom feed
* [tarantool-patches] [PATCH v1] travis-ci: needs blind install for brew python2
@ 2019-06-07 14:37 Alexander V. Tikhonov
  0 siblings, 0 replies; only message in thread
From: Alexander V. Tikhonov @ 2019-06-07 14:37 UTC (permalink / raw)
  To: Kirill Yukhin; +Cc: Alexander V. Tikhonov, Alexander Turenko, tarantool-patches

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

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-06-07 14:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-07 14:37 [tarantool-patches] [PATCH v1] travis-ci: needs blind install for brew python2 Alexander V. Tikhonov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox