2016-02-25 23:31:04 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2017-02-18 03:18:58 +08:00
|
|
|
export NVM_DIR="$HOME/.nvm"
|
2016-02-02 23:44:41 +08:00
|
|
|
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
|
2016-08-25 21:25:05 +08:00
|
|
|
nvm use 6
|
2016-02-25 23:31:04 +08:00
|
|
|
|
|
|
|
set -x
|
|
|
|
|
2017-08-08 16:47:03 +08:00
|
|
|
# check out corresponding branches of dependencies.
|
|
|
|
#
|
|
|
|
# clone the deps with depth 1: we know we will only ever need that one
|
|
|
|
# commit.
|
|
|
|
`dirname $0`/fetch-develop.deps.sh --depth 1
|
2017-05-17 23:17:08 +08:00
|
|
|
|
2016-02-02 23:44:41 +08:00
|
|
|
npm install
|
2016-02-25 23:31:04 +08:00
|
|
|
|
2016-08-27 08:54:19 +08:00
|
|
|
# apparently npm 3.10.3 on node 6.4.0 doesn't upgrade #develop target with npm install unless explicitly asked.
|
2017-05-17 23:17:08 +08:00
|
|
|
npm install olm
|
2016-08-27 08:54:19 +08:00
|
|
|
|
2016-09-06 20:24:06 +08: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.
|
2017-02-03 23:06:03 +08:00
|
|
|
#
|
|
|
|
# disabled for now, to avoid the annoying scenario of a release doing something
|
|
|
|
# different to /develop. Instead, add it to the 'npm install' list above.
|
|
|
|
# -- rav 2016/02/03
|
|
|
|
#tar -C olm -xz < olm/olm-*.tgz
|
|
|
|
#rm -r node_modules/olm
|
|
|
|
#cp -r olm/package node_modules/olm
|
|
|
|
|
2016-04-13 17:15:04 +08:00
|
|
|
# run the mocha tests
|
|
|
|
npm run test
|
|
|
|
|
2017-01-23 23:42:50 +08:00
|
|
|
# run eslint
|
|
|
|
npm run lintall -- -f checkstyle -o eslint.xml || true
|
|
|
|
|
2017-05-12 00:46:08 +08:00
|
|
|
rm dist/riot-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
|
2016-02-25 23:31:04 +08:00
|
|
|
|
2017-05-27 05:51:55 +08:00
|
|
|
# Since the deps are fetched from git, we can rev-parse
|
|
|
|
REACT_SHA=$(cd node_modules/matrix-react-sdk; git rev-parse --short=12 HEAD)
|
|
|
|
JSSDK_SHA=$(cd node_modules/matrix-js-sdk; git rev-parse --short=12 HEAD)
|
2016-03-11 22:30:53 +08:00
|
|
|
|
2016-02-03 01:03:48 +08:00
|
|
|
VECTOR_SHA=$(git rev-parse --short=12 HEAD) # use the ACTUAL SHA rather than assume develop
|
2016-03-11 22:30:53 +08:00
|
|
|
|
2016-11-12 02:23:25 +08:00
|
|
|
DIST_VERSION=$VECTOR_SHA-react-$REACT_SHA-js-$JSSDK_SHA scripts/package.sh -d
|