Files
element-web/jenkins.sh
T

26 lines
402 B
Bash
Raw Normal View History

2016-02-25 14:18:26 +00:00
#!/bin/bash
set -e
2016-06-23 14:38:08 +01:00
export KARMAFLAGS="--no-colors"
2016-02-25 14:18:26 +00: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
2016-03-28 23:37:00 +01:00
# run the mocha tests
npm run test
2016-07-01 19:38:14 +01:00
# run eslint
npm run lint -- -f checkstyle -o eslint.xml || true
2016-02-25 17:24:13 +00:00
# delete the old tarball, if it exists
rm -f matrix-react-sdk-*.tgz
2016-02-25 14:18:26 +00:00
# build our tarball
npm pack