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