2017-10-07 00:33:22 +08:00
|
|
|
#!/bin/bash
|
2016-01-04 19:35:25 +08:00
|
|
|
|
2017-07-03 15:38:19 +08:00
|
|
|
|
2016-01-04 19:35:25 +08:00
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
|
|
realpath() { [[ $1 = /* ]] && echo "$1" || echo "$PWD/${1#./}"; }
|
|
|
|
ROOT=$(dirname $(dirname $(realpath "$0")))
|
2018-07-23 22:34:16 +08:00
|
|
|
|
|
|
|
# On Linux with Electron 2.0.x running out of a VM causes
|
|
|
|
# a freeze so we only enable this flag on macOS
|
|
|
|
export ELECTRON_ENABLE_LOGGING=1
|
2016-01-04 19:35:25 +08:00
|
|
|
else
|
|
|
|
ROOT=$(dirname $(dirname $(readlink -f $0)))
|
|
|
|
fi
|
|
|
|
|
2016-05-10 22:42:47 +08:00
|
|
|
cd $ROOT
|
2016-05-10 22:15:48 +08:00
|
|
|
|
2016-08-09 23:13:08 +08:00
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
2016-08-09 23:56:05 +08:00
|
|
|
NAME=`node -p "require('./product.json').nameLong"`
|
2016-08-09 23:13:08 +08:00
|
|
|
CODE="./.build/electron/$NAME.app/Contents/MacOS/Electron"
|
|
|
|
else
|
|
|
|
NAME=`node -p "require('./product.json').applicationName"`
|
2016-08-09 23:57:09 +08:00
|
|
|
CODE=".build/electron/$NAME"
|
2016-08-09 23:13:08 +08:00
|
|
|
fi
|
|
|
|
|
2016-04-21 08:41:11 +08:00
|
|
|
# Node modules
|
2017-11-16 17:47:02 +08:00
|
|
|
test -d node_modules || yarn
|
2016-04-21 08:41:11 +08:00
|
|
|
|
|
|
|
# Get electron
|
2017-11-16 21:43:41 +08:00
|
|
|
node build/lib/electron.js || ./node_modules/.bin/gulp electron
|
2016-04-21 08:41:11 +08:00
|
|
|
|
2016-01-04 19:35:25 +08:00
|
|
|
# Unit Tests
|
2017-07-03 17:45:11 +08:00
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
2017-04-10 16:20:56 +08:00
|
|
|
cd $ROOT ; ulimit -n 4096 ; \
|
2016-08-09 23:13:08 +08:00
|
|
|
"$CODE" \
|
2017-04-10 16:20:56 +08:00
|
|
|
test/electron/index.js "$@"
|
2016-01-04 19:35:25 +08:00
|
|
|
else
|
2017-04-10 16:20:56 +08:00
|
|
|
cd $ROOT ; \
|
2016-08-09 23:13:08 +08:00
|
|
|
"$CODE" \
|
2017-04-10 16:20:56 +08:00
|
|
|
test/electron/index.js "$@"
|
2016-01-04 19:35:25 +08:00
|
|
|
fi
|