Files
element-web/scripts/ci/build.sh
T

26 lines
364 B
Bash
Raw Normal View History

#!/bin/bash
#
2019-03-13 17:42:05 -06: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
2017-01-19 18:23:34 +00:00
RIOT_WEB_DIR=riot-web
REACT_SDK_DIR=`pwd`
2019-03-11 18:08:37 +00:00
yarn link
2018-05-02 10:58:43 +01:00
scripts/fetchdep.sh vector-im riot-web
2017-01-19 18:23:34 +00:00
2019-03-11 18:08:37 +00:00
pushd "$RIOT_WEB_DIR"
2019-03-11 18:08:37 +00:00
yarn link matrix-js-sdk
yarn link matrix-react-sdk
2019-03-11 18:08:37 +00:00
yarn install
yarn build
2019-03-11 18:08:37 +00:00
2018-07-27 14:36:47 +02:00
popd