mirror of
https://github.com/passepartoutvpn/openssl-apple.git
synced 2025-01-20 07:49:11 +00:00
Verbose logging for travis
This commit is contained in:
parent
405119928c
commit
b9e0ff0952
@ -1,7 +1,6 @@
|
||||
language: objective-c
|
||||
language: objective-c
|
||||
before_install:
|
||||
- ./build-libssl.sh
|
||||
- ./build-libssl.sh verbose
|
||||
- xcrun -sdk iphoneos lipo -info ./lib/*.a
|
||||
script:
|
||||
- xctool -project OpenSSL-for-iOS.xcodeproj -scheme OpenSSL-for-iOS -sdk iphonesimulator clean build
|
@ -113,7 +113,12 @@ do
|
||||
# add -isysroot to CC=
|
||||
sed -ie "s!^CFLAG=!CFLAG=-isysroot ${CROSS_TOP}/SDKs/${CROSS_SDK} -miphoneos-version-min=7.0 !" "Makefile"
|
||||
|
||||
make >> "${LOG}" 2>&1
|
||||
if [ "$1" == "verbose" ];
|
||||
then
|
||||
make
|
||||
else
|
||||
make >> "${LOG}" 2>&1
|
||||
fi
|
||||
|
||||
if [ $? != 0 ];
|
||||
then
|
||||
|
Loading…
Reference in New Issue
Block a user