From: "Alexander V. Tikhonov" <avtikhon@tarantool.org>
To: Oleg Piskunov <o.piskunov@tarantool.org>,
Sergey Bronnikov <sergeyb@tarantool.org>
Cc: tarantool-patches@dev.tarantool.org
Subject: [Tarantool-patches] [PATCH v2 1/1] gitlab-ci: disable at OSX curl SSL cert check
Date: Mon, 13 Apr 2020 17:53:34 +0300 [thread overview]
Message-ID: <96ee72a968b3299e4b086ffc71d8cefb8d76b7f0.1586789350.git.avtikhon@tarantool.org> (raw)
Formula tntpython2.rb consist of the packages which download target host
does not have valid SSL certificate, disabled curl SSL check for it.
Close #4883
---
Github: https://github.com/tarantool/tarantool/tree/avtikhon/osx_15_catalina-full-ci
Issue: https://github.com/tarantool/tarantool/issues/4883
.travis.mk | 23 +++++++++++++++++------
1 file changed, 17 insertions(+), 6 deletions(-)
diff --git a/.travis.mk b/.travis.mk
index 001752844..68cc12c0b 100644
--- a/.travis.mk
+++ b/.travis.mk
@@ -154,22 +154,33 @@ test_static_docker_build:
# OSX #
#######
-# since Python 2 is EOL it's latest commit from tapped local formula is used
OSX_PKGS=openssl readline curl icu4c libiconv zlib autoconf automake libtool \
- cmake file://$${PWD}/tools/brew_taps/tntpython2.rb
+ cmake
deps_osx:
- # install brew using command from Homebrew repository instructions:
+ # Install brew using command from Homebrew repository instructions:
# https://github.com/Homebrew/install
# NOTE: 'echo' command below is required since brew installation
# script obliges the one to enter a newline for confirming the
# installation via Ruby script.
brew update || echo | /usr/bin/ruby -e \
"$$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- # try to install the packages either upgrade it to avoid of fails
- # if the package already exists with the previous version
+ # Try to install the packages either upgrade it to avoid of fails
+ # if the package already exists with the previous version.
brew install --force ${OSX_PKGS} || brew upgrade ${OSX_PKGS}
- pip install --force-reinstall -r test-run/requirements.txt
+ # Since Python 2 is EOL, it's latest commit from tapped local formula is
+ # used. Some packages from tntpython2.rb formula use external download
+ # hosts which do not have valid SSL certificate. To resolve it the SSL
+ # certificates check need to be disabled during formula installation.
+ echo insecure >>$${HOME}/.curlrc
+ brew install --force file://$${PWD}/tools/brew_taps/tntpython2.rb || :
+ sed '$$d' $${HOME}/.curlrc >$${HOME}/.curlrc.new && \
+ mv $${HOME}/.curlrc.new $${HOME}/.curlrc
+ python2 -V
+ pip install --trusted-host files.pythonhosted.org \
+ --upgrade pip setuptools
+ pip install --trusted-host files.pythonhosted.org \
+ --force-reinstall -r test-run/requirements.txt
build_osx:
cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_WERROR=ON ${CMAKE_EXTRA_PARAMS}
--
2.17.1
next reply other threads:[~2020-04-13 14:53 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-13 14:53 Alexander V. Tikhonov [this message]
2020-04-14 8:07 ` Sergey Bronnikov
2020-04-14 8:43 ` Alexander Tikhonov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=96ee72a968b3299e4b086ffc71d8cefb8d76b7f0.1586789350.git.avtikhon@tarantool.org \
--to=avtikhon@tarantool.org \
--cc=o.piskunov@tarantool.org \
--cc=sergeyb@tarantool.org \
--cc=tarantool-patches@dev.tarantool.org \
--subject='Re: [Tarantool-patches] [PATCH v2 1/1] gitlab-ci: disable at OSX curl SSL cert check' \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox