mirror of
https://github.com/apache/cordova-plugin-statusbar.git
synced 2025-01-19 01:12:49 +08:00
CB-12935: (ios, android) Enable paramedic builds on Travis CI
This commit is contained in:
parent
92fff60cc7
commit
0364d4a4f9
73
.travis.yml
73
.travis.yml
@ -1,4 +1,71 @@
|
|||||||
language: node_js
|
|
||||||
sudo: false
|
sudo: false
|
||||||
node_js:
|
addons:
|
||||||
- "4.2"
|
jwt:
|
||||||
|
secure: Rd/wGSUWGWbc0Y/vqPgI29nybq+j/zWilEIOCBJeRQVwfubdbJNZUIb5DFlSSVzMEavkxZ0PYJ45h21iXyWo3aOoxUJwhkO7QZNzW2MsYzy9qpiKK1jOESXMrpboRWoxg+BL85YbaDF3u1XRy+Xm1nraStT6mDfx5LlUG1Lac6A=
|
||||||
|
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-statusbar-$TRAVIS_JOB_NUMBER
|
||||||
|
Loading…
Reference in New Issue
Block a user