2017-01-19 13:51:20 +01: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-19 19:23:34 +01:00
|
|
|
RIOT_WEB_DIR=riot-web
|
|
|
|
REACT_SDK_DIR=`pwd`
|
|
|
|
|
2018-05-02 11:58:43 +02:00
|
|
|
scripts/fetchdep.sh vector-im riot-web
|
2018-07-27 14:36:47 +02:00
|
|
|
pushd "$RIOT_WEB_DIR"
|
2017-01-19 19:23:34 +01:00
|
|
|
|
2017-01-19 13:51:20 +01:00
|
|
|
mkdir node_modules
|
|
|
|
npm install
|
2017-01-19 18:41:58 +01:00
|
|
|
|
2017-07-05 16:43:33 +02: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-19 18:41:58 +01:00
|
|
|
|
2017-07-05 16:43:33 +02:00
|
|
|
# ... and, of course, the version of react-sdk we just built
|
2017-01-19 19:23:34 +01:00
|
|
|
rm -r node_modules/matrix-react-sdk
|
|
|
|
ln -s "$REACT_SDK_DIR" node_modules/matrix-react-sdk
|
2017-01-19 18:41:58 +01:00
|
|
|
|
2018-07-27 15:23:37 +02:00
|
|
|
npm run build
|
2017-01-19 13:51:20 +01:00
|
|
|
npm run test
|
2018-07-27 14:36:47 +02:00
|
|
|
popd
|
|
|
|
|
2018-10-31 15:39:45 +01:00
|
|
|
if [ "$TRAVIS_BRANCH" = "develop" ]
|
2018-10-25 17:47:38 +02:00
|
|
|
then
|
|
|
|
# run end to end tests
|
2018-12-22 03:16:37 +01:00
|
|
|
scripts/fetchdep.sh matrix-org matrix-react-end-to-end-tests master
|
2018-10-25 17:47:38 +02:00
|
|
|
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
|