aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/run_tests/build_node.sh
diff options
context:
space:
mode:
authorGravatar murgatroid99 <michael.lumish@gmail.com>2015-01-26 11:33:39 -0800
committerGravatar murgatroid99 <michael.lumish@gmail.com>2015-01-26 11:33:39 -0800
commitc279165f726dedc976fa9a73f1afe700639c6f3e (patch)
tree6c7d71906dc6fe2f1c0a778ffaaaf4cbfb31fb9b /tools/run_tests/build_node.sh
parent564b944b3cd06e4c19b9b72a7db322801cd4d107 (diff)
Got run_tests.py and node tests working
Diffstat (limited to 'tools/run_tests/build_node.sh')
-rwxr-xr-xtools/run_tests/build_node.sh7
1 files changed, 3 insertions, 4 deletions
diff --git a/tools/run_tests/build_node.sh b/tools/run_tests/build_node.sh
index 600b1bde8c..4b092982b2 100755
--- a/tools/run_tests/build_node.sh
+++ b/tools/run_tests/build_node.sh
@@ -2,19 +2,18 @@
set -ex
+CONFIG=${CONFIG:-opt}
+
# change to grpc repo root
cd $(dirname $0)/../..
# tells npm install to look for files in that directory
export GRPC_ROOT=`pwd`
# tells npm install the subdirectory with library files
-export GRPC_LIB_SUBDIR=libs/opt
+export GRPC_LIB_SUBDIR=libs/$CONFIG
# tells npm install not to use default locations
export GRPC_NO_INSTALL=yes
-# build the c libraries
-make -j static_c
-
cd src/node
npm install