forked from OneBusAway/onebusaway-iphone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
33 lines (27 loc) · 1.11 KB
/
.travis.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
30
31
32
33
language: objective-c
before_install:
#- pwd
# print version of os x
#- sw_vers
# print disk space
#- df -h
# install all software updates
#- sudo softwareupdate -iva
#install xcode
#- chmod -R +x ./scripts
#- ./scripts/travis/xcode5.sh
#install xctool
- brew update
- brew remove xctool
- brew install xctool
before_script:
- chmod -R +x ./scripts
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
script: xctool -project org.onebusaway.iphone.xcodeproj -scheme Debug archive CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGN_ENTITLEMENTS="" build-tests run-tests && ./scripts/travis/upload.sh
env:
global:
- APPNAME="OneBusAway"
- DEPLOY_READONLY_REPO="https://github.com/bbodenmiller/onebusaway-iphone-test-releases.git"
- DEPLOY_SSH_REPO="git@github.com:bbodenmiller/onebusaway-iphone-test-releases.git"
- DISTRIBUTION_LISTS="Developers"
#details to setup travis to testflight are at https://gist.github.com/johanneswuerbach/5559514 with some tips at https://github.com/OneBusAway/onebusaway-iphone/issues/16