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