From 81a7fa04b2ef9a76227ff7e9b00f23b19543710c Mon Sep 17 00:00:00 2001 From: Robert Edwards Date: Mon, 14 Sep 2015 10:29:34 -0400 Subject: [PATCH 1/3] Add travis ci script. --- .travis.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..d2625d25 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,7 @@ +language: objective-c +xcode_project: CoreDataStack.xcodeproj +xcode_scheme: CoreDataStack +xcode_sdk: iphonesimulator8.3 +osx_image: xcode7 +script: +- xcodebuild test -scheme 'CoreDataStack' -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO \ No newline at end of file From d3dfaa8e18a8806fbe06e38f7b2ad8bbaf6f3bfb Mon Sep 17 00:00:00 2001 From: Robert Edwards Date: Mon, 14 Sep 2015 10:46:07 -0400 Subject: [PATCH 2/3] Add build status tag to README. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d9276d1b..a5a98c4d 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) [![Cocoapods Compatible](https://img.shields.io/cocoapods/v/BNRCoreDataStack.svg)](https://img.shields.io/cocoapods/v/BNRCoreDataStack.svg) [![GitHub license](https://img.shields.io/badge/license-MIT-lightgrey.svg)](./LICENSE) +[![Build Status](https://travis-ci.org/bignerdranch/CoreDataStack.svg)](https://travis-ci.org/bignerdranch/CoreDataStack) + The BNR Core Data Stack is a small framework, written in Swift, that makes it easy to quickly set up a multi-threading ready Core Data stack. From 65eadc41caa3881710e452393bab57959ec87c99 Mon Sep 17 00:00:00 2001 From: Robert Edwards Date: Tue, 15 Sep 2015 10:22:35 -0400 Subject: [PATCH 3/3] Remove hard coded simulator version. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d2625d25..eda2ca66 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: objective-c xcode_project: CoreDataStack.xcodeproj xcode_scheme: CoreDataStack -xcode_sdk: iphonesimulator8.3 +xcode_sdk: iphonesimulator osx_image: xcode7 script: - xcodebuild test -scheme 'CoreDataStack' -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO \ No newline at end of file