mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
c36950db23
and remove chmod line from pipeline
26 lines
364 B
Bash
Executable File
26 lines
364 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# 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
|
|
|
|
popd
|