From 838a35229dd81e9b2360f144dc887284c23133a2 Mon Sep 17 00:00:00 2001 From: Shazron Abdullah Date: Tue, 11 Dec 2018 15:34:37 +0800 Subject: [PATCH 1/4] Update node support to 6, 8 --- .travis.yml | 4 ++-- appveyor.yml | 2 +- package.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index c82aecf..2c20a86 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,10 @@ os: osx -osx_image: xcode8.3 +osx_image: xcode10.1 sudo: false env: matrix: - - TRAVIS_NODE_VERSION: '4' - TRAVIS_NODE_VERSION: '6' + - TRAVIS_NODE_VERSION: '8' git: depth: 10 before_install: diff --git a/appveyor.yml b/appveyor.yml index d4c6a08..3667679 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,8 +2,8 @@ # http://www.appveyor.com/docs/appveyor-yml environment: matrix: - - nodejs_version: "4" - nodejs_version: "6" + - nodejs_version: "8" install: - ps: Install-Product node $env:nodejs_version diff --git a/package.json b/package.json index 8539dfc..9c683d9 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "url": "https://github.com/ios-control/ios-sim" }, "engines": { - "node": ">=4" + "node": ">=6" }, "keywords": [ "ios-sim", From 0eca849379fb0d1b86270fc55d815aa48346333c Mon Sep 17 00:00:00 2001 From: Shazron Abdullah Date: Tue, 11 Dec 2018 15:46:35 +0800 Subject: [PATCH 2/4] Updated build badges, added note for Node 6+ and Xcode 10+ support --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b53d3a3..6a9084e 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,11 @@ -[![Build status](https://ci.appveyor.com/api/projects/status/0kw833771uu622fs?svg=true)](https://ci.appveyor.com/project/shazron/ios-sim) -[![Build Status](https://travis-ci.org/phonegap/ios-sim.svg?branch=master)](https://travis-ci.org/phonegap/ios-sim) +[![Build status](https://ci.appveyor.com/api/projects/status/xh7auct40k5oxwjg/branch/master?svg=true +)](https://ci.appveyor.com/project/shazron/ios-sim-bn5fo) +[![Build Status](https://travis-ci.org/ios-control/ios-sim.svg?branch=master)](https://travis-ci.org/ios-control/ios-sim) ios-sim ======= -Supports Xcode 8 and greater only since version 5.x. +Supports Node 6 and greater, and Xcode 10 and greater -- since version 8.x. The ios-sim tool is a command-line utility that launches an iOS application on the iOS Simulator. This allows for niceties such as automated testing without having to open Xcode. From 4505935a34a4fa383a39a26f12705f71f2baf663 Mon Sep 17 00:00:00 2001 From: Shazron Abdullah Date: Tue, 11 Dec 2018 15:52:11 +0800 Subject: [PATCH 3/4] Removed obsolete npm commands --- .travis.yml | 2 -- appveyor.yml | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2c20a86..83e45cf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,8 +13,6 @@ before_install: install $TRAVIS_NODE_VERSION - node --version - npm --version -- npm cache clean -- npm install -g npm@3 install: - npm install script: diff --git a/appveyor.yml b/appveyor.yml index 3667679..199a3e4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,9 +7,7 @@ environment: install: - ps: Install-Product node $env:nodejs_version - - npm cache clean - - npm install -g npm@3 - - npm install + - npm install build: off From a0f6d83f938fd566c632404663773b74c2affdf2 Mon Sep 17 00:00:00 2001 From: Shazron Abdullah Date: Tue, 11 Dec 2018 15:53:00 +0800 Subject: [PATCH 4/4] Fixed appveyor.yml syntax --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 199a3e4..8c84d60 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,7 +7,7 @@ environment: install: - ps: Install-Product node $env:nodejs_version - - npm install + - npm install build: off