Don't build a custom openssl on OSX

I don't believe the bugfix the required this is needed anymore
This commit is contained in:
Steven Fackler 2015-06-27 15:45:48 -07:00
parent cb7248d8cb
commit 645430602d
2 changed files with 1 additions and 13 deletions

View File

@ -6,10 +6,8 @@ rust:
os:
- osx
- linux
before_install:
- (test $TRAVIS_OS_NAME == "osx" || ./openssl/test/build.sh)
before_script:
- ./openssl/test/test.sh
script:
- (cd openssl && LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH cargo test)
- (cd openssl && cargo test)
- (test $TRAVIS_OS_NAME == "osx" || (cd openssl && LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH cargo test --features "$FEATURES"))

View File

@ -1,10 +0,0 @@
#!/bin/bash
set -e
mkdir /tmp/openssl
cd /tmp/openssl
sudo apt-get install gcc make
curl https://openssl.org/source/openssl-1.0.2-latest.tar.gz | tar --strip-components=1 -xzf -
./config --prefix=/usr/ shared
make
sudo make install