Skip to content

Commit 5d5163f

Browse files
committed
Merge pull request #30 from ReactKit/CircleCI
Use CircleCI.
2 parents 9f98bb0 + b038fa6 commit 5d5163f

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SwiftState
1+
SwiftState [![Circle CI](https://circleci.com/gh/ReactKit/SwiftState/tree/swift%2F1.2.svg?style=svg)](https://circleci.com/gh/ReactKit/SwiftState/tree/swift%2F1.2)
22
==========
33

44
Elegant state machine for Swift.

circle.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
machine:
2+
xcode:
3+
version: "6.3.1"
4+
5+
test:
6+
override:
7+
- set -o pipefail &&
8+
xcodebuild
9+
-scheme "SwiftState-OSX"
10+
clean build test |
11+
tee $CIRCLE_ARTIFACTS/xcode_raw-OSX.log |
12+
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results-OSX.xml
13+
14+
- set -o pipefail &&
15+
xcodebuild
16+
CODE_SIGNING_REQUIRED=NO
17+
CODE_SIGN_IDENTITY=
18+
PROVISIONING_PROFILE=
19+
-scheme "SwiftState-iOS"
20+
clean build test |
21+
tee $CIRCLE_ARTIFACTS/xcode_raw-iOS.log |
22+
xcpretty --color --report junit --output $CIRCLE_TEST_REPORTS/xcode/results-iOS.xml

0 commit comments

Comments
 (0)