Skip to content

Commit a2b0675

Browse files
authored
add travis example for ios (#573)
1 parent 2ff78b1 commit a2b0675

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

docs/travis.sample.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
language: objective-c
2+
sudo: false
3+
osx_image: xcode8.3
4+
5+
cache: bundler
6+
7+
rvm:
8+
- 2.4
9+
10+
install:
11+
- bundle install
12+
- npm install -g appium@1.6.4
13+
14+
before_script:
15+
- appium --log-level warn &
16+
17+
script:
18+
- bundle exec rake rubocop
19+
- cd ios_tests; rake ios
20+
21+
notifications:
22+
email:
23+
on_success: never
24+
on_failure: never

0 commit comments

Comments
 (0)