2016-02-25 16:31:04 +01:00
#!/bin/bash
set -e
2016-02-02 16:44:41 +01:00
export NVM_DIR = "/home/jenkins/.nvm"
[ -s " $NVM_DIR /nvm.sh " ] && . " $NVM_DIR /nvm.sh "
nvm use 4
2016-02-25 16:31:04 +01:00
set -x
2016-02-02 16:44:41 +01:00
npm install
2016-02-25 16:31:04 +01:00
2016-03-11 15:30:53 +01:00
# we may be using a dev branch of react-sdk, in which case we need to build it
( cd node_modules/matrix-react-sdk && npm run build)
2016-04-13 11:15:04 +02:00
# run the mocha tests
npm run test
2016-02-25 16:31:04 +01:00
# build our artifacts; dumps them in ./vector
2016-04-14 16:05:36 +02:00
npm run build:dev
2016-02-02 18:03:48 +01:00
# gzip up ./vector
2016-02-02 17:09:33 +01:00
rm vector-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
2016-02-25 16:31:04 +01:00
2016-03-11 15:30:53 +01:00
# node_modules deps from 'npm install' don't have a .git dir so can't
# rev-parse; but they do set the commit in package.json under 'gitHead' which
# we're grabbing here.
REACT_SHA = $( grep 'gitHead' node_modules/matrix-react-sdk/package.json | cut -d \" -f 4 | head -c 12)
JSSDK_SHA = $( grep 'gitHead' node_modules/matrix-js-sdk/package.json | cut -d \" -f 4 | head -c 12)
2016-02-02 18:03:48 +01:00
VECTOR_SHA = $( git rev-parse --short= 12 HEAD) # use the ACTUAL SHA rather than assume develop
2016-03-11 15:30:53 +01:00
2016-02-02 18:03:48 +01:00
tar -zcvhf vector-$VECTOR_SHA -react-$REACT_SHA -js-$JSSDK_SHA .tar.gz vector #g[z]ip, [c]reate archive, [v]erbose, [f]ilename, [h]ard-dereference (do not archive symlinks)