Skip to content

Commit

Permalink
Build Example app on Travis CI/CircleCI (#94)
Browse files Browse the repository at this point in the history
* Build Android on CircleCI

* Build iOS on TravisCI
  • Loading branch information
jtreanor authored Oct 7, 2016
1 parent e01f918 commit 4c61e7b
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
language: objective-c

node_js:
- 5.10

sudo: false

install:
- npm install -g cordova

before_script:
- cd Example
- cordova platform add ios
- cordova plugin add ..

script:
- cordova build ios
13 changes: 13 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
general:
build_dir: Example

dependencies:
override:
- npm install -g cordova
test:
pre:
- echo y | android update sdk -u --filter "extra-google-m2repository, extra-android-m2repository"
- cordova platform add android
- cordova plugin add ..
override:
- cordova build android

0 comments on commit 4c61e7b

Please sign in to comment.