From f63a23654699bc519dacc7bf93670a42dfc1580f Mon Sep 17 00:00:00 2001 From: Cory Dolphin Date: Sat, 11 Jun 2016 21:48:09 -0700 Subject: [PATCH] Adds automatic building with carthage to CI --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 313c5929..ef7dceb4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,7 @@ before_install: - pod --version - pod setup --silent > /dev/null - pod repo update --silent + - brew install carthage script: @@ -24,4 +25,6 @@ script: - pod install --project-directory=Tests - xctool -workspace SDWebImage.xcworkspace -scheme 'SDWebImage' -sdk iphonesimulator clean - - xctool -workspace SDWebImage.xcworkspace -scheme 'Tests' -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=latest' test \ No newline at end of file + - xctool -workspace SDWebImage.xcworkspace -scheme 'Tests' -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=latest' test + + - carthage build --no-skip-current \ No newline at end of file