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`
|
|
|
|
|
2017-05-22 17:27:41 +02:00
|
|
|
curbranch="${TRAVIS_PULL_REQUEST_BRANCH:-$TRAVIS_BRANCH}"
|
|
|
|
echo "Determined branch to be $curbranch"
|
|
|
|
|
2017-05-22 17:41:43 +02:00
|
|
|
git clone https://github.com/vector-im/riot-web.git \
|
2017-01-19 19:23:34 +01:00
|
|
|
"$RIOT_WEB_DIR"
|
|
|
|
|
|
|
|
cd "$RIOT_WEB_DIR"
|
|
|
|
|
2017-05-22 17:48:53 +02:00
|
|
|
git checkout "$curbranch" || git checkout develop
|
|
|
|
|
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
|
|
|
|
2017-01-19 13:51:20 +01:00
|
|
|
npm run test
|