2016-02-25 22:18:26 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2016-06-23 21:38:08 +08:00
|
|
|
export KARMAFLAGS="--no-colors"
|
2016-02-25 22:18:26 +08:00
|
|
|
export NVM_DIR="/home/jenkins/.nvm"
|
|
|
|
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
|
|
|
|
nvm use 4
|
|
|
|
|
|
|
|
set -x
|
|
|
|
|
|
|
|
# install the other dependencies
|
|
|
|
npm install
|
|
|
|
|
2017-01-12 01:18:37 +08:00
|
|
|
# we may be using a dev branch of js-sdk in which case we need to build it
|
2017-01-13 00:38:48 +08:00
|
|
|
(cd node_modules/matrix-js-sdk && npm install)
|
2017-01-12 01:18:37 +08:00
|
|
|
|
2016-03-29 06:37:00 +08:00
|
|
|
# run the mocha tests
|
|
|
|
npm run test
|
|
|
|
|
2016-07-02 02:38:14 +08:00
|
|
|
# run eslint
|
|
|
|
npm run lint -- -f checkstyle -o eslint.xml || true
|
|
|
|
|
2016-02-26 01:24:13 +08:00
|
|
|
# delete the old tarball, if it exists
|
|
|
|
rm -f matrix-react-sdk-*.tgz
|
|
|
|
|
2016-02-25 22:18:26 +08:00
|
|
|
# build our tarball
|
|
|
|
npm pack
|