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"
|
2016-08-25 15:25:05 +02:00
|
|
|
nvm use 6
|
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-08-27 02:54:19 +02:00
|
|
|
# apparently npm 3.10.3 on node 6.4.0 doesn't upgrade #develop target with npm install unless explicitly asked.
|
|
|
|
npm install matrix-react-sdk matrix-js-sdk
|
|
|
|
|
2016-09-06 14:24:06 +02:00
|
|
|
# install olm. A naive 'npm i ./olm/olm-*.tgz' fails because it uses the url
|
|
|
|
# from our package.json (or even matrix-js-sdk's) in preference.
|
|
|
|
tar -C olm -xz < olm/olm-*.tgz
|
|
|
|
rm -r node_modules/olm
|
|
|
|
cp -r olm/package node_modules/olm
|
2016-09-05 19:54:10 +02:00
|
|
|
|
2017-01-11 18:20:27 +01:00
|
|
|
# we may be using dev branches of js-sdk and react-sdk, in which case we need to build them
|
2017-01-11 20:03:52 +01:00
|
|
|
(cd node_modules/matrix-js-sdk && npm run build)
|
2016-03-11 15:30:53 +01:00
|
|
|
(cd node_modules/matrix-react-sdk && npm run build)
|
|
|
|
|
2016-04-13 11:15:04 +02:00
|
|
|
# run the mocha tests
|
|
|
|
npm run test
|
|
|
|
|
2017-01-23 16:42:50 +01:00
|
|
|
# run eslint
|
|
|
|
npm run lintall -- -f checkstyle -o eslint.xml || true
|
|
|
|
|
2016-11-08 18:37:49 +01:00
|
|
|
rm dist/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-11-11 19:23:25 +01:00
|
|
|
DIST_VERSION=$VECTOR_SHA-react-$REACT_SHA-js-$JSSDK_SHA scripts/package.sh -d
|