From dd5ca6cdf513d8afa24be92a87c69dcaa5f04018 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 16 Jan 2015 17:59:18 -0800 Subject: [PATCH 1/3] trigger the breakage in #239 --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 01932a46..f90d8ac9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ env: - NODE_VERSION="0.10.31" - NODE_VERSION="0.10.32" - NODE_VERSION="0.11.14" + - NODE_WEBKIT="0.11.5" node_js: - "0.10" notifications: @@ -22,5 +23,6 @@ before_install: - nvm install $NODE_VERSION - node --version - node_modules/.bin/node-gyp rebuild --directory test + - if [[ ${NODE_WEBKIT:-unset} != "unset" ]]; then npm install nw-gyp && ./node_modules/.bin/nw-gyp rebuild --directory test --target=$NODE_WEBKIT install: script: tap --gc test/js/*-test.js From 177499bc9b31bdcf9d7db53d055dc0542190cea4 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 16 Jan 2015 18:18:19 -0800 Subject: [PATCH 2/3] fix syntax for node-webkit test build --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f90d8ac9..fc6cab59 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,6 @@ before_install: - nvm install $NODE_VERSION - node --version - node_modules/.bin/node-gyp rebuild --directory test - - if [[ ${NODE_WEBKIT:-unset} != "unset" ]]; then npm install nw-gyp && ./node_modules/.bin/nw-gyp rebuild --directory test --target=$NODE_WEBKIT + - if [[ ${NODE_WEBKIT:-unset} != "unset" ]]; then npm install nw-gyp && ./node_modules/.bin/nw-gyp rebuild --directory test --target=$NODE_WEBKIT; fi; install: script: tap --gc test/js/*-test.js From 4a424fcb21fea4ae8e6b1f6fd0266b9742df17d7 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 16 Jan 2015 18:26:22 -0800 Subject: [PATCH 3/3] we need node around still given how the travis config works --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index fc6cab59..b540d5a9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,7 @@ env: - NODE_VERSION="0.10.31" - NODE_VERSION="0.10.32" - NODE_VERSION="0.11.14" - - NODE_WEBKIT="0.11.5" + - NODE_WEBKIT="0.11.5" NODE_VERSION="0.10.32" node_js: - "0.10" notifications: