From 5180a3f8999aae40dfbb3b73e83a51d74e3fd8c0 Mon Sep 17 00:00:00 2001 From: Emily Toop Date: Tue, 7 Aug 2018 18:53:55 +0100 Subject: [PATCH] Add iOS build task --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0c98d89b..2a40da54 100644 --- a/.travis.yml +++ b/.travis.yml @@ -60,10 +60,10 @@ matrix: - cargo install cargo-lipo script: - > - cd ffi - cargo lipo --release + cd ffi && + cargo lipo --release && cd .. - > - cd sdks/swift/Mentat - xcodebuild -configuration Debug -scheme "Mentat Debug" -sdk iphonesimulator test -destination 'platform=iOS Simulator,name=iPhone SE,OS=latest' | xcpretty + cd sdks/swift/Mentat && + xcodebuild -configuration Debug -scheme "Mentat Debug" -sdk iphonesimulator test -destination 'platform=iOS Simulator,name=iPhone SE,OS=latest' | xcpretty && cd ../../..