From cf60a4bc2e7b0a25227fda028b63383b2b973e34 Mon Sep 17 00:00:00 2001 From: John Estropia Date: Fri, 30 Sep 2016 17:00:11 +0900 Subject: [PATCH] updated travis.yml --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0f1e159..724e597 100644 --- a/.travis.yml +++ b/.travis.yml @@ -38,8 +38,8 @@ script: xcodebuild -workspace CoreStore.xcworkspace -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO clean test | xcpretty -c; fi - if [ $RUN_DEMO == "YES" ]; then - xcodebuild -workspace "CoreStore.xcworkspace" -scheme "CoreStoreDemo" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO clean test | xcpretty -c; - xcodebuild -workspace "CoreStore.xcworkspace" -scheme "CoreStoreDemo" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO clean test | xcpretty -c; + xcodebuild -project "CoreStoreDemo/CoreStoreDemo.xcodeproj" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO clean test | xcpretty -c; + xcodebuild -project "CoreStoreDemo/CoreStoreDemo.xcodeproj" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO clean test | xcpretty -c; fi - if [ $POD_LINT == "YES" ]; then pod lib lint --quick;