Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 6E0A5200CB4 for ; Tue, 27 Jun 2017 09:01:56 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 6CA3F160BE9; Tue, 27 Jun 2017 07:01:56 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id B2EC7160BDC for ; Tue, 27 Jun 2017 09:01:55 +0200 (CEST) Received: (qmail 85551 invoked by uid 500); 27 Jun 2017 07:01:54 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 85542 invoked by uid 99); 27 Jun 2017 07:01:54 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Jun 2017 07:01:54 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 97115DFB0D; Tue, 27 Jun 2017 07:01:54 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: alsorokin@apache.org To: commits@cordova.apache.org Message-Id: <1906cdd54a0b4f91a3a4e43ee870a16d@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cordova-plugin-vibration git commit: CB-12935: (ios, android) Enable paramedic builds on Travis CI Date: Tue, 27 Jun 2017 07:01:54 +0000 (UTC) archived-at: Tue, 27 Jun 2017 07:01:56 -0000 Repository: cordova-plugin-vibration Updated Branches: refs/heads/master 5c89c4643 -> 3c1ac0d48 CB-12935: (ios, android) Enable paramedic builds on Travis CI Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/commit/3c1ac0d4 Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/tree/3c1ac0d4 Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/diff/3c1ac0d4 Branch: refs/heads/master Commit: 3c1ac0d485dde7243d35c02247db7ef816d367e1 Parents: 5c89c46 Author: Alexander Sorokin Authored: Tue Jun 27 09:25:07 2017 +0300 Committer: Alexander Sorokin Committed: Tue Jun 27 09:49:32 2017 +0300 ---------------------------------------------------------------------- .travis.yml | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 70 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-vibration/blob/3c1ac0d4/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index b9af4c5..4b5262b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,71 @@ -language: node_js sudo: false -node_js: - - "4.2" +addons: + jwt: + secure: jVSvu9mlFqqifMcAQpEg+rWYDG43wzTovyptz097PQk/JXGX7TKd90aBWyE3ef/Qbjq+OV7PDxSRTUQwuMXhE9+FUYQs6PiW62CmDMwumForaV2NVbmoTREl1gQIgenx++bdWSN+V5ebh6iLj58ZUxZeSAZBsfM6a+G++w5QptU= +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-vibration-$TRAVIS_JOB_NUMBER --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org