From ce3b2ff5cb7080eeb7b6cf16e88ada0e503ba6e4 Mon Sep 17 00:00:00 2001 From: Florent Vilmart Date: Thu, 22 Sep 2016 01:19:21 -0400 Subject: [PATCH] Adds .swift-version to force pods to use 3.0 --- .swift-version | 1 + .travis.yml | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .swift-version diff --git a/.swift-version b/.swift-version new file mode 100644 index 00000000..9f55b2cc --- /dev/null +++ b/.swift-version @@ -0,0 +1 @@ +3.0 diff --git a/.travis.yml b/.travis.yml index 1f6bf44e..94cb33d5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,9 +36,10 @@ script: xcodebuild clean -workspace ParseLiveQuery.xcworkspace -scheme LiveQueryDemo-ObjC | xcpretty -c xcodebuild build -workspace ParseLiveQuery.xcworkspace -scheme LiveQueryDemo-ObjC -configuration Debug | xcpretty -c elif [ "$TEST_TYPE" = CocoaPods ]; then - pod lib lint ParseLiveQuery.podspec + # SocketRocket produces warnings on xcode8 + pod lib lint ParseLiveQuery.podspec --allow-warnings elif [ "$TEST_TYPE" = Carthage ]; then - carthage build --no-skip-current --platform iOS + carthage build --no-skip-current fi after_success: - |