2017-01-19 12:51:20 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2019-03-13 23:42:05 +00:00
|
|
|
# script which is run by the CI build (after `yarn test`).
|
2017-01-19 12:51:20 +00:00
|
|
|
#
|
|
|
|
# clones riot-web develop and runs the tests against our version of react-sdk.
|
|
|
|
|
|
|
|
set -ev
|
|
|
|
|
2017-01-19 18:23:34 +00:00
|
|
|
RIOT_WEB_DIR=riot-web
|
|
|
|
REACT_SDK_DIR=`pwd`
|
|
|
|
|
2019-03-11 18:08:37 +00:00
|
|
|
yarn link
|
|
|
|
|
2018-05-02 09:58:43 +00:00
|
|
|
scripts/fetchdep.sh vector-im riot-web
|
2017-01-19 18:23:34 +00:00
|
|
|
|
2019-03-11 18:08:37 +00:00
|
|
|
pushd "$RIOT_WEB_DIR"
|
2017-01-19 17:41:58 +00:00
|
|
|
|
2019-03-11 18:08:37 +00:00
|
|
|
yarn link matrix-js-sdk
|
|
|
|
yarn link matrix-react-sdk
|
2017-01-19 17:41:58 +00:00
|
|
|
|
2019-03-11 18:08:37 +00:00
|
|
|
yarn install
|
2017-01-19 17:41:58 +00:00
|
|
|
|
2019-03-11 14:22:02 +00:00
|
|
|
yarn build
|
2019-03-11 18:08:37 +00:00
|
|
|
|
2018-07-27 12:36:47 +00:00
|
|
|
popd
|