From 71e4149fab5e6eb72d8d071b4e8bd4ecfc0189ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Fri, 8 Jan 2021 08:46:13 +0000 Subject: [PATCH] Revert "Travis export ssl envs only on osX" This reverts commit c5cd0ad0160396783c21d231e783addc3caa4e36. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4f29cf6a..9bbfb99e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,8 +2,8 @@ language: cpp before_install: - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; export SSL_CFLAGS="$SSL_CFLAGS -I/usr/local/opt/openssl/include" - - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; export SSL_LIBS="$SSL_LIBS -L/usr/local/opt/openssl/lib" + - export SSL_CFLAGS="$SSL_CFLAGS -I/usr/local/opt/openssl/include" + - export SSL_LIBS="$SSL_LIBS -L/usr/local/opt/openssl/lib" - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew outdated openssl || brew upgrade openssl; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew unlink protobuf; fi