Commit c5f178c6 by Dane Springmeyer

skip 32 shared build with io.js

parent 59ff442e
...@@ -71,8 +71,11 @@ if [[ $(uname -s) == 'Linux' ]]; then ...@@ -71,8 +71,11 @@ if [[ $(uname -s) == 'Linux' ]]; then
npm test npm test
publish publish
make clean make clean
# test source compile in 32 bit mode against external libsqlite3 # broken for some unknown reason against io.js
sudo apt-get -y install libsqlite3-dev:i386 if [[ ${NODE_VERSION:0:4} != 'iojs' ]]; then
CC=gcc-4.6 CXX=g++-4.6 npm install --build-from-source --sqlite=/usr # test source compile in 32 bit mode against external libsqlite3
npm test sudo apt-get -y install libsqlite3-dev:i386
CC=gcc-4.6 CXX=g++-4.6 npm install --build-from-source --sqlite=/usr
npm test
fi
fi fi
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