2020-01-21 07:12:59 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-11-21 01:55:48 +08:00
|
|
|
# Creates a layered environment with the full repo for the app and SDKs cloned
|
|
|
|
# and linked.
|
2020-01-21 07:12:59 +08:00
|
|
|
|
2020-11-21 01:55:48 +08: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 07:12:59 +08:00
|
|
|
|
|
|
|
# Set up the js-sdk first
|
2020-11-21 01:55:48 +08:00
|
|
|
scripts/fetchdep.sh matrix-org matrix-js-sdk
|
2020-01-21 07:12:59 +08:00
|
|
|
pushd matrix-js-sdk
|
|
|
|
yarn link
|
2021-07-07 22:11:47 +08:00
|
|
|
yarn install --pure-lockfile
|
2020-01-21 07:12:59 +08:00
|
|
|
popd
|
|
|
|
|
2022-02-01 23:49:49 +08:00
|
|
|
# Set up the js-sdk first
|
|
|
|
scripts/fetchdep.sh matrix-org matrix-analytics-events main
|
|
|
|
pushd matrix-analytics-events
|
|
|
|
yarn link
|
|
|
|
yarn install --pure-lockfile
|
|
|
|
popd
|
|
|
|
|
2020-01-21 07:12:59 +08:00
|
|
|
# Now set up the react-sdk
|
|
|
|
yarn link matrix-js-sdk
|
2022-02-01 23:49:49 +08:00
|
|
|
yarn link matrix-analytics-events
|
2020-01-21 07:12:59 +08:00
|
|
|
yarn link
|
2021-07-07 22:11:47 +08:00
|
|
|
yarn install --pure-lockfile
|
2020-12-18 23:13:09 +08:00
|
|
|
yarn reskindex
|
2020-01-21 07:12:59 +08:00
|
|
|
|
2020-12-03 21:56:27 +08:00
|
|
|
# Finally, set up element-web
|
2020-11-21 01:55:48 +08:00
|
|
|
scripts/fetchdep.sh vector-im element-web
|
2020-12-03 21:56:27 +08:00
|
|
|
pushd element-web
|
2020-01-21 07:12:59 +08:00
|
|
|
yarn link matrix-js-sdk
|
|
|
|
yarn link matrix-react-sdk
|
2021-07-07 22:11:47 +08:00
|
|
|
yarn install --pure-lockfile
|
2020-01-21 07:12:59 +08:00
|
|
|
yarn build:res
|
|
|
|
popd
|