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 535AD200CB3 for ; Mon, 26 Jun 2017 13:21:01 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 51F8B160BDE; Mon, 26 Jun 2017 11:21:01 +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 97BCA160BD9 for ; Mon, 26 Jun 2017 13:21:00 +0200 (CEST) Received: (qmail 19744 invoked by uid 500); 26 Jun 2017 11:20:59 -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 19735 invoked by uid 99); 26 Jun 2017 11:20:59 -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; Mon, 26 Jun 2017 11:20:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A067ADFE8B; Mon, 26 Jun 2017 11:20:59 +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: <1c2681c187154c0892c413895d782731@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: cordova-plugin-inappbrowser git commit: CB-12935: (ios, android) Enable paramedic builds on Travis CI Date: Mon, 26 Jun 2017 11:20:59 +0000 (UTC) archived-at: Mon, 26 Jun 2017 11:21:01 -0000 Repository: cordova-plugin-inappbrowser Updated Branches: refs/heads/master b6ed0bbac -> 4f144d9e8 CB-12935: (ios, android) Enable paramedic builds on Travis CI Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/commit/4f144d9e Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/tree/4f144d9e Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/diff/4f144d9e Branch: refs/heads/master Commit: 4f144d9e82bcead3a820fd3ec10ca022d9335951 Parents: b6ed0bb Author: Alexander Sorokin Authored: Mon Jun 26 13:31:31 2017 +0300 Committer: Alexander Sorokin Committed: Mon Jun 26 13:31:31 2017 +0300 ---------------------------------------------------------------------- .travis.yml | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 70 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/blob/4f144d9e/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index b9af4c5..a76aefc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,71 @@ -language: node_js sudo: false -node_js: - - "4.2" +addons: + jwt: + secure: TZ88IEvAw1bsWPWxvDzXdpi2NK0i3PN4hG15+vDpIt6wXGVPknjxuXWJeLj7TqBpAIvP7XDfS8ZvHVPLe7fe8oOchZPLuiDw9VVIk6cnHjE6wpoavdGc/1mDJ3Bi4PDcHwRUr5ng5spYQqqlTwcECkH/q7iPgudiFM6rlOlGRyA= +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-inappbrowser-$TRAVIS_JOB_NUMBER --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org For additional commands, e-mail: commits-help@cordova.apache.org