From ecaaff5ab82cc4c2c05f3252fba08f2c19bda4e0 Mon Sep 17 00:00:00 2001 From: Yasuhiro Inami Date: Sat, 25 Jul 2015 10:56:52 +0900 Subject: [PATCH 1/4] Add circle.yml --- circle.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 circle.yml diff --git a/circle.yml b/circle.yml new file mode 100644 index 0000000..64d51bd --- /dev/null +++ b/circle.yml @@ -0,0 +1,22 @@ +machine: + xcode: + version: "6.3.1" + +test: + override: + - set -o pipefail && + xcodebuild + -scheme "SwiftTask-OSX" + clean build test | + tee $CIRCLE_ARTIFACTS/xcode_raw-OSX.log | + xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results-OSX.xml + + - set -o pipefail && + xcodebuild + CODE_SIGNING_REQUIRED=NO + CODE_SIGN_IDENTITY= + PROVISIONING_PROFILE= + -scheme "SwiftTask-iOS" + clean build test | + tee $CIRCLE_ARTIFACTS/xcode_raw-iOS.log | + xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results-iOS.xml \ No newline at end of file From 51cc3346e09177fe3d9b41046eff48e6f4def8dc Mon Sep 17 00:00:00 2001 From: Yasuhiro Inami Date: Sat, 25 Jul 2015 11:14:58 +0900 Subject: [PATCH 2/4] Update circle.yml --- circle.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/circle.yml b/circle.yml index 64d51bd..eb5b28e 100644 --- a/circle.yml +++ b/circle.yml @@ -2,6 +2,15 @@ machine: xcode: version: "6.3.1" +general: + branches: + ignore: + - swift/2.0 + +checkout: + post: + - git submodule update --init --recursive + test: override: - set -o pipefail && From baf1045f621663f28da15424bdb9691704375d81 Mon Sep 17 00:00:00 2001 From: Yasuhiro Inami Date: Sat, 25 Jul 2015 11:19:51 +0900 Subject: [PATCH 3/4] Update circle.yml --- circle.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/circle.yml b/circle.yml index eb5b28e..b32a8cd 100644 --- a/circle.yml +++ b/circle.yml @@ -15,6 +15,7 @@ test: override: - set -o pipefail && xcodebuild + -workspace "SwiftTask.xcworkspace" -scheme "SwiftTask-OSX" clean build test | tee $CIRCLE_ARTIFACTS/xcode_raw-OSX.log | @@ -25,6 +26,7 @@ test: CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY= PROVISIONING_PROFILE= + -workspace "SwiftTask.xcworkspace" -scheme "SwiftTask-iOS" clean build test | tee $CIRCLE_ARTIFACTS/xcode_raw-iOS.log | From 93cf6d39a0c829afa0621965b633d153a1174cfe Mon Sep 17 00:00:00 2001 From: Yasuhiro Inami Date: Sat, 25 Jul 2015 11:23:18 +0900 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8959374..81bd0a0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -SwiftTask +SwiftTask [![Circle CI](https://circleci.com/gh/ReactKit/SwiftTask/tree/swift%2F1.2.svg?style=svg)](https://circleci.com/gh/ReactKit/SwiftTask/tree/swift%2F1.2) ========= [Promise](http://www.html5rocks.com/en/tutorials/es6/promises/) + progress + pause + cancel + retry for Swift.