2016-02-25 18:31:04 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2017-02-17 22:18:58 +03:00
|
|
|
export NVM_DIR="$HOME/.nvm"
|
2016-02-02 18:44:41 +03:00
|
|
|
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
|
2018-11-21 22:00:11 +03:00
|
|
|
nvm use 10
|
2016-02-25 18:31:04 +03:00
|
|
|
|
|
|
|
set -x
|
|
|
|
|
2017-08-08 11:47:03 +03:00
|
|
|
# check out corresponding branches of dependencies.
|
2019-03-12 14:06:57 +03:00
|
|
|
# clone the deps with depth 1: we know we will only ever need that one commit.
|
2017-08-08 11:47:03 +03:00
|
|
|
`dirname $0`/fetch-develop.deps.sh --depth 1
|
2017-05-17 18:17:08 +03:00
|
|
|
|
2019-03-12 14:06:57 +03:00
|
|
|
yarn install
|
2017-02-03 18:06:03 +03:00
|
|
|
|
2016-04-13 12:15:04 +03:00
|
|
|
# run the mocha tests
|
2019-03-12 14:06:57 +03:00
|
|
|
yarn test
|
2016-04-13 12:15:04 +03:00
|
|
|
|
2017-01-23 18:42:50 +03:00
|
|
|
# run eslint
|
2019-03-12 14:06:57 +03:00
|
|
|
yarn lintall -- -f checkstyle -o eslint.xml || true
|
2017-01-23 18:42:50 +03:00
|
|
|
|
2017-05-11 19:46:08 +03:00
|
|
|
rm dist/riot-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
|
2016-02-25 18:31:04 +03:00
|
|
|
|
2017-05-27 00:51:55 +03: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 17:30:53 +03:00
|
|
|
|
2016-02-02 20:03:48 +03:00
|
|
|
VECTOR_SHA=$(git rev-parse --short=12 HEAD) # use the ACTUAL SHA rather than assume develop
|
2016-03-11 17:30:53 +03:00
|
|
|
|
2016-11-11 21:23:25 +03:00
|
|
|
DIST_VERSION=$VECTOR_SHA-react-$REACT_SHA-js-$JSSDK_SHA scripts/package.sh -d
|