jenkins.sh for react-sdk

This commit is contained in:
Richard van der Hoff 2016-02-25 14:18:26 +00:00
parent 3f51cda846
commit 46a2d4079d
2 changed files with 23 additions and 2 deletions

7
.gitignore vendored
View file

@ -1,2 +1,5 @@
node_modules
lib
/node_modules
/lib
# tarball created by 'npm pack'
/matrix-react-sdk-*.tgz

18
jenkins.sh Normal file
View file

@ -0,0 +1,18 @@
#!/bin/bash
set -e
export NVM_DIR="/home/jenkins/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
nvm use 4
set -x
# install the version of js-sdk provided to us by jenkins
npm install ./node_modules/matrix-js-sdk-*.tgz
# install the other dependencies
npm install
# build our tarball
npm pack