Commit 1a53f017 by Dane Springmeyer

try to fix 32 bit io.js install [publish binary]

parent 7935c9c9
......@@ -13,13 +13,13 @@ branches:
env:
matrix:
- NODE_VERSION="0.10.33"
- NODE_VERSION="0.12.0"
#- NODE_VERSION="0.10.33"
#- NODE_VERSION="0.12.0"
- NODE_VERSION="iojs-1.1.0"
- NODE_WEBKIT="0.8.6" TARGET_ARCH="ia32"
- NODE_WEBKIT="0.8.6" TARGET_ARCH="x64"
- NODE_WEBKIT="0.10.5" TARGET_ARCH="ia32"
- NODE_WEBKIT="0.10.5" TARGET_ARCH="x64"
#- NODE_WEBKIT="0.8.6" TARGET_ARCH="ia32"
#- NODE_WEBKIT="0.8.6" TARGET_ARCH="x64"
#- NODE_WEBKIT="0.10.5" TARGET_ARCH="ia32"
#- NODE_WEBKIT="0.10.5" TARGET_ARCH="x64"
global:
- secure: PifMOSnn+mWR1RUptXse+fLvWiTrzg0R/mazO7RWhXHWBKv0uAJ/qV3dI0GIRBLtjG10Iy+tT5RNh1TIbBzB9Y67wMcGvylUPG1+3EOKoBMEPnOD9AgCEQw4SOXfGPx0cq2N6ueSKieCgu1yKN9Wq7XCbE+zTk/DiRNIdLirVoo=
- secure: cc4esJY1vPXL31IeumAJoKWDDO2BTGFiltwfO1jbTbiV7QT911QUjTUasxXIVpOaHNCpxSTyevPwwTWfzt2EtF92Lli+qhQ2bbzMiDSBZstSrHdAe62Ai2M1oYYUwk/0cABB/2nO9uRyYwITCxpTSNzZBrYhn3C29WqBhPeVDmM=
......
......@@ -54,7 +54,7 @@ if [[ $(uname -s) == 'Linux' ]]; then
# enable 32 bit node
export PATH=$(pwd)/node-${NVER}-${platform}-x86/bin:$PATH
if [[ ${NODE_VERSION:0:4} == 'iojs' ]]; then
wget http://iojs.org/dist/${NVER}/iojs-${NVER}-${platform}-x86.tar.gz
wget https://iojs.org/download/release/${NVER}/iojs-${NVER}-${platform}-x86.tar.gz
tar xf iojs-${NVER}-${platform}-x86.tar.gz
# enable 32 bit iojs
export PATH=$(pwd)/iojs-${NVER}-${platform}-x86/bin:$PATH
......@@ -64,6 +64,7 @@ if [[ $(uname -s) == 'Linux' ]]; then
# enable 32 bit node
export PATH=$(pwd)/node-${NVER}-${platform}-x86/bin:$PATH
fi
node -e "console.log(process.arch,process.execPath)"
# install 32 bit compiler toolchain and X11
# test source compile in 32 bit mode with internal libsqlite3
CC=gcc-4.6 CXX=g++-4.6 npm install --build-from-source
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment