From 7d0cbfe5c44848170369d1bd70c78cc220a55af9 Mon Sep 17 00:00:00 2001 From: Bartosz Polaczyk Date: Thu, 8 Nov 2018 19:08:18 +0100 Subject: [PATCH] Verify pod spec validity --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index c559198..c6349e8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,10 @@ before_install: - gem install cocoapods # Since Travis is not always on latest version - pod install --project-directory=Example script: +- export EXPANDED_CODE_SIGN_IDENTITY=- # workaround for https://github.com/CocoaPods/CocoaPods/issues/7708 +- export EXPANDED_CODE_SIGN_IDENTITY_NAME=- # workaround for https://github.com/CocoaPods/CocoaPods/issues/7708 +- pod lib lint --verbose + - set -o pipefail && xcodebuild -project Example/Pods/Pods.xcodeproj -scheme InjectionTDD -configuration Debug -sdk iphonesimulator CODE_SIGNING_REQUIRED=NO build | xcpretty - cd Example/build/Debug-iphonesimulator/InjectionTDD/ && zip -r ../../../../InjectionTDD.framework.zip InjectionTDD.framework/ && cd - - cd scripts/update_breakpoints/ && zip -r ../../update_breakpoints.zip * && cd -