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