From f6ca3bdf95e3652a82406d75d188ce8770fef27c Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Sun, 18 Sep 2016 11:34:48 +0200 Subject: [PATCH] Use xcodebuild instead of xctool (waiting for https://github.com/facebook/xctool/issues/704) --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 964dd1e..afc7680 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,6 @@ before_install: - xcrun -sdk iphoneos lipo -info openssl.framework/openssl script: - - xctool -project OpenSSL-for-iOS.xcodeproj -scheme OpenSSL-for-iOS -sdk iphonesimulator clean build + - xcodebuild -project OpenSSL-for-iOS.xcodeproj -scheme OpenSSL-for-iOS -sdk iphonesimulator clean build + # xctool 0.2.9 doesn't support Xcode 8 yet (see https://github.com/facebook/xctool/issues/704) + #- xctool -project OpenSSL-for-iOS.xcodeproj -scheme OpenSSL-for-iOS -sdk iphonesimulator clean build