2020-01-21 00:12:59 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2022-10-12 17:15:57 +02:00
|
|
|
set -ex
|
|
|
|
|
2020-11-20 18:55:48 +01:00
|
|
|
# Creates a layered environment with the full repo for the app and SDKs cloned
|
2022-03-11 14:00:56 +01:00
|
|
|
# and linked. This gives an element-web dev environment ready to build with
|
|
|
|
# the current react-sdk branch and any matching branches of react-sdk's dependencies
|
|
|
|
# so that changes can be tested in element-web.
|
2020-01-21 00:12:59 +01:00
|
|
|
|
2020-11-20 18:55:48 +01:00
|
|
|
# Note that this style is different from the recommended developer setup: this
|
|
|
|
# file nests js-sdk and element-web inside react-sdk, while the local
|
|
|
|
# development setup places them all at the same level. We are nesting them here
|
|
|
|
# because some CI systems do not allow moving to a directory above the checkout
|
|
|
|
# for the primary repo (react-sdk in this case).
|
2020-01-21 00:12:59 +01:00
|
|
|
|
|
|
|
# Set up the js-sdk first
|
2020-11-20 18:55:48 +01:00
|
|
|
scripts/fetchdep.sh matrix-org matrix-js-sdk
|
2020-01-21 00:12:59 +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
|
2020-01-21 00:12:59 +01:00
|
|
|
yarn link
|
2023-03-31 17:06:08 +02:00
|
|
|
yarn install --frozen-lockfile
|
2020-01-21 00:12:59 +01:00
|
|
|
popd
|
|
|
|
|
2022-03-11 14:00:56 +01:00
|
|
|
# Also set up matrix-analytics-events so we get the latest from
|
|
|
|
# the main branch or a branch with matching name
|
2022-02-01 16:49:49 +01:00
|
|
|
scripts/fetchdep.sh matrix-org matrix-analytics-events main
|
|
|
|
pushd matrix-analytics-events
|
|
|
|
yarn link
|
2023-03-31 17:06:08 +02:00
|
|
|
yarn install --frozen-lockfile
|
2022-06-07 21:08:36 +02:00
|
|
|
yarn build:ts
|
2022-02-01 16:49:49 +01:00
|
|
|
popd
|
|
|
|
|
2020-01-21 00:12:59 +01:00
|
|
|
# Now set up the react-sdk
|
|
|
|
yarn link matrix-js-sdk
|
2022-06-07 21:08:36 +02:00
|
|
|
yarn link @matrix-org/analytics-events
|
2020-01-21 00:12:59 +01:00
|
|
|
yarn link
|
2023-03-31 17:06:08 +02:00
|
|
|
yarn install --frozen-lockfile
|
2020-01-21 00:12:59 +01:00
|
|
|
|
2020-12-03 14:56:27 +01:00
|
|
|
# Finally, set up element-web
|
2020-11-20 18:55:48 +01:00
|
|
|
scripts/fetchdep.sh vector-im element-web
|
2020-12-03 14:56:27 +01:00
|
|
|
pushd element-web
|
2020-01-21 00:12:59 +01:00
|
|
|
yarn link matrix-js-sdk
|
|
|
|
yarn link matrix-react-sdk
|
2023-03-31 17:06:08 +02:00
|
|
|
yarn install --frozen-lockfile
|
2020-01-21 00:12:59 +01:00
|
|
|
yarn build:res
|
|
|
|
popd
|