Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
CB-12935: (ios, android) Enable paramedic builds on Travis CI
- Loading branch information
Showing
1 changed file
with
70 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,4 +1,71 @@ | ||
language: node_js | ||
sudo: false | ||
node_js: | ||
- "4.2" | ||
addons: | ||
jwt: | ||
secure: yGb6UDaYlYgPpe6T3mqSvUbWrJAFeAJNQnVOFr9tfWEt9SdTmwrU68cEVMKmpc+nqCkvfrAn49XPzcERkgMDUQXPQzWHo87TfYpjqu3/+jfqyJy6RuE5ddbWQW05LtgRhjiPfmXmpAe41dbI7khl8Kx60zz9cxyHqBcR/k9bfFs= | ||
env: | ||
global: | ||
- SAUCE_USERNAME=snay | ||
- TRAVIS_NODE_VERSION="4.2" | ||
matrix: | ||
include: | ||
- env: PLATFORM=ios-9.3 | ||
os: osx | ||
osx_image: xcode7.3 | ||
language: node_js | ||
node_js: '4.2' | ||
- env: PLATFORM=ios-10.0 | ||
os: osx | ||
osx_image: xcode7.3 | ||
language: node_js | ||
node_js: '4.2' | ||
- env: PLATFORM=android-4.4 | ||
os: linux | ||
language: android | ||
jdk: oraclejdk8 | ||
android: | ||
components: | ||
- tools | ||
- tools | ||
- env: PLATFORM=android-5.1 | ||
os: linux | ||
language: android | ||
jdk: oraclejdk8 | ||
android: | ||
components: | ||
- tools | ||
- tools | ||
- env: PLATFORM=android-6.0 | ||
os: linux | ||
language: android | ||
jdk: oraclejdk8 | ||
android: | ||
components: | ||
- tools | ||
- tools | ||
- env: PLATFORM=android-7.0 | ||
os: linux | ||
language: android | ||
jdk: oraclejdk8 | ||
android: | ||
components: | ||
- tools | ||
- tools | ||
before_install: | ||
- npm cache clean -f | ||
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm | ||
&& git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm | ||
install $TRAVIS_NODE_VERSION | ||
- node --version | ||
- if [[ "$PLATFORM" =~ android ]]; then gradle --version; fi | ||
- if [[ "$PLATFORM" =~ ios ]]; then npm install -g ios-deploy; fi | ||
- if [[ "$PLATFORM" =~ android ]]; then echo y | android update sdk -u --filter android-22,android-23,android-24,android-25; | ||
fi | ||
- git clone https://github.com/apache/cordova-paramedic /tmp/paramedic && pushd /tmp/paramedic | ||
&& npm install && popd | ||
- npm install -g cordova | ||
install: | ||
- npm install | ||
script: | ||
- npm test | ||
- node /tmp/paramedic/main.js --config pr/$PLATFORM --plugin $(pwd) --shouldUseSauce | ||
--buildName travis-plugin-geolocation-$TRAVIS_JOB_NUMBER |