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
|
2018-07-27 20:36:47 +08:00
|
|
|
pushd "$RIOT_WEB_DIR"
|
2017-01-20 02:23:34 +08:00
|
|
|
|
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
|
|
|
|
2018-07-27 21:23:37 +08:00
|
|
|
npm run build
|
2017-01-19 20:51:20 +08:00
|
|
|
npm run test
|
2018-07-27 20:36:47 +08:00
|
|
|
popd
|
|
|
|
|
2018-10-25 23:47:38 +08:00
|
|
|
if [ "$TRAVIS_BRANCH" != "experimental" ]
|
|
|
|
then
|
|
|
|
# run end to end tests
|
|
|
|
git clone https://github.com/matrix-org/matrix-react-end-to-end-tests.git --branch master
|
|
|
|
pushd matrix-react-end-to-end-tests
|
|
|
|
ln -s $REACT_SDK_DIR/$RIOT_WEB_DIR riot/riot-web
|
|
|
|
# PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true ./install.sh
|
|
|
|
# CHROME_PATH=$(which google-chrome-stable) ./run.sh
|
|
|
|
./install.sh
|
|
|
|
./run.sh --travis
|
|
|
|
popd
|
|
|
|
fi
|