From 3696697c6ba98f2e430da339451f4df6ae76d64f Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Mon, 9 Dec 2019 04:58:45 -0800 Subject: [PATCH] Increase xcodebuild timeout (#684) Summary: Until we have a better solution Pull Request resolved: https://github.com/facebook/flipper/pull/684 Reviewed By: nikoant Differential Revision: D18881940 Pulled By: passy fbshipit-source-id: 44960f6602da8e50c5c9cb4fc35e5009fb21e9d5 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index b7dc9f1de..95362b710 100644 --- a/.travis.yml +++ b/.travis.yml @@ -64,7 +64,7 @@ matrix: script: - cd iOS/Sample - IPHONESIMULATOR=$(xcodebuild -showsdks | grep -o "iphonesimulator[0-9]\\+\\.[0-9]\\+$") - - travis_wait xcodebuild clean build -workspace Sample.xcworkspace -scheme Sample -sdk $IPHONESIMULATOR -quiet > ./build.log + - travis_wait 30 xcodebuild clean build -workspace Sample.xcworkspace -scheme Sample -sdk $IPHONESIMULATOR -quiet > ./build.log - tail -100 ./build.log - language: objective-c