]> git.ipfire.org Git - thirdparty/openvpn.git/commit
Resolve several travis-ci issues
authorIlya Shipitsin <chipitsine@gmail.com>
Sun, 29 Jan 2017 06:58:11 +0000 (11:58 +0500)
committerDavid Sommerseth <davids@openvpn.net>
Sun, 29 Jan 2017 19:46:14 +0000 (20:46 +0100)
commit208c03ea145ed89083c43267733487c99a805069
tree40c08b42b2d8a4cdbcfb29a089fcfbfe107d86dd
parent631812fe29c69d0034628ab8321cb4016cb4fc2d
Resolve several travis-ci issues

MBEDTLS_VERSION, OPENSSL_VERSION were defined twice - in both
.travis.yml  and .travis/build-deps.sh files, the last one
defined OPENSSL_VERSION via nonexistent OPENSSL_VERION
variable, which lead us to use openssl-1.0.1 instead of
openssl-1.0.2, I removed variable definition from build-deps.sh

"cache: [ apt: true ]" is not a travis supported option, it was
introduced by mistake, I removed it

LD_LIBRARY_PATH was defined for the entire test run, it includes
custom openssl build, which was picked by "wget", so "wget"
could not verify SSL cert at https://www.openssl.org sometimes.
We do not want wget to pick our custom LD_LIBRARY_PATH, so I moved
that variable to "script" section

LD_LIBRARY_PATH was defined for both linux and osx environments,
for the second DYLD_LIBRARY_PATH must be defined instead

v2: Upgrade openssl, mbedtls to the most recent versions
v3: DYLD_LIBRARY_PATH was defined via LD_LIBRARY_PATH by mistake

Acked-by: Selva Nair <selva.nair@gmail.com>
Message-Id: <1485673091-7600-1-git-send-email-chipitsine@gmail.com>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg13983.html
Signed-off-by: David Sommerseth <davids@openvpn.net>
.travis.yml
.travis/build-deps.sh