-
Notifications
You must be signed in to change notification settings - Fork 1
/
circle.yml
29 lines (29 loc) · 903 Bytes
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
machine:
xcode:
version: 7.3
environment:
# CocoaPods versions greater than 0.34 require
# your terminal to be using UTF-8 encoding.
LANG: en_US.UTF-8
GYM_CODE_SIGNING_IDENTITY: "iPhone Developer: [email protected] (GPR57277UG)"
dependencies:
pre:
- sudo gem install cocoapods --version 0.38.2
# CocoaPods sometimes has issues using caches
# between different versions of CocoaPods.
- pod setup
- pod install
test:
override:
- xctool
-reporter pretty
-reporter junit:$CIRCLE_TEST_REPORTS/xcode/results.xml
-reporter plain:$CIRCLE_ARTIFACTS/xctool.log
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=""
PROVISIONING_PROFILE=
-destination 'platform=iOS Simulator,name=iPhone 6,OS=latest'
-sdk iphonesimulator
-workspace Rakam.xcworkspace
-scheme "RakamTests"
build build-tests run-tests