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:
parent
cb7248d8cb
commit
645430602d
|
|
@ -6,10 +6,8 @@ rust:
|
||||||
os:
|
os:
|
||||||
- osx
|
- osx
|
||||||
- linux
|
- linux
|
||||||
before_install:
|
|
||||||
- (test $TRAVIS_OS_NAME == "osx" || ./openssl/test/build.sh)
|
|
||||||
before_script:
|
before_script:
|
||||||
- ./openssl/test/test.sh
|
- ./openssl/test/test.sh
|
||||||
script:
|
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"))
|
- (test $TRAVIS_OS_NAME == "osx" || (cd openssl && LD_LIBRARY_PATH=/usr/lib:$LD_LIBRARY_PATH cargo test --features "$FEATURES"))
|
||||||
|
|
|
||||||
|
|
@ -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
|
|
||||||
Loading…
Reference in New Issue