element-web/scripts/ci/build.sh

26 lines
364 B
Bash
Raw Normal View History

#!/bin/bash
#
2019-03-14 00:42:05 +01:00
# script which is run by the CI build (after `yarn test`).
#
# clones riot-web develop and runs the tests against our version of react-sdk.
set -ev
RIOT_WEB_DIR=riot-web
REACT_SDK_DIR=`pwd`
yarn link
scripts/fetchdep.sh vector-im riot-web
pushd "$RIOT_WEB_DIR"
yarn link matrix-js-sdk
yarn link matrix-react-sdk
yarn install
yarn build
2018-07-27 14:36:47 +02:00
popd