2019-03-11 19:23:07 +01:00
|
|
|
#!/bin/bash
|
2017-06-08 14:52:52 +02:00
|
|
|
|
2022-03-11 14:00:56 +01:00
|
|
|
# This installs other Matrix dependencies that are often
|
|
|
|
# developed in parallel with react-sdk, using fetchdep.sh
|
|
|
|
# for branch matching.
|
|
|
|
# This will set up a working react-sdk environment, so is
|
|
|
|
# used for running react-sdk standalone tests. To set up a
|
|
|
|
# build of element-web, use layered.sh
|
|
|
|
|
2017-06-08 14:52:52 +02:00
|
|
|
set -ex
|
2019-03-11 19:08:37 +01:00
|
|
|
|
2023-07-04 18:14:29 +02:00
|
|
|
scripts/fetchdep.sh matrix-org matrix-js-sdk develop
|
2019-03-11 19:08:37 +01:00
|
|
|
pushd matrix-js-sdk
|
2023-02-20 12:41:36 +01:00
|
|
|
[ -n "$JS_SDK_GITHUB_BASE_REF" ] && git fetch --depth 1 origin $JS_SDK_GITHUB_BASE_REF && git checkout $JS_SDK_GITHUB_BASE_REF
|
2019-03-11 19:08:37 +01:00
|
|
|
yarn link
|
2023-03-31 17:06:08 +02:00
|
|
|
yarn install --frozen-lockfile $@
|
2019-03-11 19:08:37 +01:00
|
|
|
popd
|
|
|
|
|
2023-07-04 18:14:29 +02:00
|
|
|
scripts/fetchdep.sh matrix-org matrix-analytics-events
|
|
|
|
# We don't pass a default branch so cloning may fail when we are not in a PR
|
|
|
|
# This is expected as this project does not share a release cycle but we still branch match it
|
|
|
|
if [ -d matrix-analytics-events ]; then
|
|
|
|
pushd matrix-analytics-events
|
|
|
|
yarn link
|
|
|
|
yarn install --frozen-lockfile $@
|
|
|
|
yarn build:ts
|
|
|
|
popd
|
|
|
|
fi
|
2022-02-01 16:49:49 +01:00
|
|
|
|
2019-03-11 19:08:37 +01:00
|
|
|
yarn link matrix-js-sdk
|
2023-07-04 18:14:29 +02:00
|
|
|
[ -d matrix-analytics-events ] && yarn link @matrix-org/analytics-events
|
2023-03-31 17:06:08 +02:00
|
|
|
yarn install --frozen-lockfile $@
|