Skip to content

Commit c08329b

Browse files
author
Dane Springmeyer
committed
build fixes
1 parent b940bbc commit c08329b

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@ matrix:
2424
# Linux
2525
- os: linux
2626
compiler: clang
27-
env: NODE_VERSION="3.1.0" PUBLISHABLE=true
27+
env: NODE_VERSION="iojs-3.1.0" PUBLISHABLE=true
2828
addons:
2929
apt:
3030
sources: [ 'ubuntu-toolchain-r-test','llvm-toolchain-precise-3.5', 'gcc-multilib', 'g++-multilib', 'libsqlite3-dev:i386' ]
3131
packages: [ 'clang-3.5']
3232
- os: linux
3333
compiler: clang
34-
env: NODE_VERSION="2.4.0" PUBLISHABLE=true
34+
env: NODE_VERSION="iojs-2.4.0" PUBLISHABLE=true
3535
addons:
3636
apt:
3737
sources: [ 'ubuntu-toolchain-r-test','llvm-toolchain-precise-3.5', 'gcc-multilib', 'g++-multilib', 'libsqlite3-dev:i386' ]
3838
packages: [ 'clang-3.5']
3939
- os: linux
4040
compiler: clang
41-
env: NODE_VERSION="1.8.4" PUBLISHABLE=true
41+
env: NODE_VERSION="iojs-1.8.4" PUBLISHABLE=true
4242
addons:
4343
apt:
4444
sources: [ 'ubuntu-toolchain-r-test','llvm-toolchain-precise-3.5', 'gcc-multilib', 'g++-multilib', 'libsqlite3-dev:i386' ]
@@ -68,13 +68,13 @@ matrix:
6868
# OS X
6969
- os: osx
7070
compiler: clang
71-
env: NODE_VERSION="3.1.0" # node abi 45
71+
env: NODE_VERSION="iojs-3.1.0" # node abi 45
7272
- os: osx
7373
compiler: clang
74-
env: NODE_VERSION="2.4.0" # node abi 44
74+
env: NODE_VERSION="iojs-2.4.0" # node abi 44
7575
- os: osx
7676
compiler: clang
77-
env: NODE_VERSION="1.8.4" # node abi 43
77+
env: NODE_VERSION="iojs-1.8.4" # node abi 43
7878
- os: osx
7979
compiler: clang
8080
env: NODE_VERSION="0.12.7" # node abi 14

scripts/build_against_node.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
set -e -u
44

55
function publish() {
6-
if [[ ${PUBLISHABLE} == true ]] && [[ ${COMMIT_MESSAGE} =~ "[publish binary]" ]]; then
6+
if [[ ${PUBLISHABLE:-false} == true ]] && [[ ${COMMIT_MESSAGE} =~ "[publish binary]" ]]; then
77
node-pre-gyp package testpackage
88
node-pre-gyp publish
99
node-pre-gyp info

0 commit comments

Comments
 (0)