2017-01-19 20:51:20 +08:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# script which is run by the travis build (after `npm run test`).
|
|
|
|
#
|
|
|
|
# clones riot-web develop and runs the tests against our version of react-sdk.
|
|
|
|
|
|
|
|
set -ev
|
|
|
|
|
2017-01-20 02:23:34 +08:00
|
|
|
RIOT_WEB_DIR=riot-web
|
|
|
|
REACT_SDK_DIR=`pwd`
|
|
|
|
|
2018-05-02 17:58:43 +08:00
|
|
|
scripts/fetchdep.sh vector-im riot-web
|
2017-01-20 02:23:34 +08:00
|
|
|
cd "$RIOT_WEB_DIR"
|
|
|
|
|
2017-01-19 20:51:20 +08:00
|
|
|
mkdir node_modules
|
|
|
|
npm install
|
2017-01-20 01:41:58 +08:00
|
|
|
|
2017-07-05 22:43:33 +08:00
|
|
|
# use the version of js-sdk we just used in the react-sdk tests
|
|
|
|
rm -r node_modules/matrix-js-sdk
|
|
|
|
ln -s "$REACT_SDK_DIR/node_modules/matrix-js-sdk" node_modules/matrix-js-sdk
|
2017-01-20 01:41:58 +08:00
|
|
|
|
2017-07-05 22:43:33 +08:00
|
|
|
# ... and, of course, the version of react-sdk we just built
|
2017-01-20 02:23:34 +08:00
|
|
|
rm -r node_modules/matrix-react-sdk
|
|
|
|
ln -s "$REACT_SDK_DIR" node_modules/matrix-react-sdk
|
2017-01-20 01:41:58 +08:00
|
|
|
|
2017-01-19 20:51:20 +08:00
|
|
|
npm run test
|