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