From c3286b7f8533afdd8f36c445431e2e431bb6b92f Mon Sep 17 00:00:00 2001 From: Pritesh Nandgaonkar Date: Wed, 4 Jul 2018 09:23:46 -0700 Subject: [PATCH] Update iOS travis to make it pass (#133) Summary: It updates the `xcodebuild` command with the sdk argument Closes https://github.com/facebook/Sonar/pull/133 Reviewed By: danielbuechele Differential Revision: D8732525 Pulled By: priteshrnandgaonkar fbshipit-source-id: 3aafa44cf00f49e507246ec25329a58749025cb4 --- .travis.yml | 5 +++-- docs/getting-started.md | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7b6681af0..e9a6ec298 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ os: osx -osx_image: xcode9.3 +osx_image: xcode9.4 matrix: include: @@ -58,4 +58,5 @@ matrix: script: - cd iOS/Sample - - xcodebuild clean build -workspace Sample.xcworkspace -scheme Pods-Sample -sdk iphonesimulator11.2 + - xcodebuild -showsdks + - xcodebuild clean build -workspace Sample.xcworkspace -scheme Pods-Sample -sdk iphonesimulator11.4 diff --git a/docs/getting-started.md b/docs/getting-started.md index 6437a3a9d..ef99f9fed 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -83,7 +83,6 @@ target 'MyApp' do end end end - ``` and install the dependencies by running `pod install`. When you open the Xcode workspace file for your app, you now can import and initialize Sonar in your AppDelegate.