[ci] tweak ci scripts to debug

This commit is contained in:
spalger 2016-07-05 11:08:22 -07:00
parent 058475fa9c
commit e98c3d4c42
3 changed files with 10 additions and 2 deletions

View file

@ -4,4 +4,4 @@ set -e
"$(dirname $0)/jenkins_setup.sh"
"$(npm bin)/grunt" build;
"$GRUNT" build;

View file

@ -31,3 +31,11 @@ nvm install "$(cat .node-version)"
### NPM ###
###*****###
npm install
if [ -z "$(npm bin)" ]; then
echo "npm does not know where it stores executables..... huh??"
exit 1
fi
export GRUNT="$(npm bin)/grunt"

View file

@ -4,4 +4,4 @@ set -e
"$(dirname $0)/jenkins_setup.sh"
xvfb-run "$(npm bin)/grunt" jenkins:unit;
xvfb-run "$GRUNT" jenkins:unit;