From f8994f237d06ca8a3e6a383c5eba45d51812ee52 Mon Sep 17 00:00:00 2001 From: Bob Sun Date: Mon, 13 Aug 2018 21:13:09 -0700 Subject: [PATCH] Move pod and carthage commands out of fastlane --- .travis.yml | 3 +++ fastlane/Fastfile | 6 +----- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0a83b44..f0f8c86 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,9 @@ before_install: install: - gem update fastlane - gem install xcodeproj +before_script: + - pod install + - travis_wait carthage bootstrap --platform iOS script: - fastlane test - if [ "$TRAVIS_EVENT_TYPE" = "push" ]; then fastlane beta; fi diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 7ae0ecf..6905246 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -1,14 +1,10 @@ default_platform :ios platform :ios do - before_all do - cocoapods(repo_update: true) - carthage(platform: "iOS", verbose: true) - end - desc "Runs all the tests" lane :test do run_tests(scheme: "passTests") + run_tests(scheme: "passKitTests") end desc "Submit a new Beta Build to Apple TestFlight"