2020-01-21 00:12:59 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-11-20 18:55:48 +01:00
|
|
|
# Creates a layered environment with the full repo for the app and SDKs cloned
|
|
|
|
# and linked.
|
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
|
|
|
|
yarn link
|
2021-07-07 16:11:47 +02:00
|
|
|
yarn install --pure-lockfile
|
2020-01-21 00:12:59 +01:00
|
|
|
popd
|
|
|
|
|
|
|
|
# Now set up the react-sdk
|
|
|
|
yarn link matrix-js-sdk
|
|
|
|
yarn link
|
2021-07-07 16:11:47 +02:00
|
|
|
yarn install --pure-lockfile
|
2020-12-18 16:13:09 +01:00
|
|
|
yarn reskindex
|
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
|
2021-07-07 16:11:47 +02:00
|
|
|
yarn install --pure-lockfile
|
2020-01-21 00:12:59 +01:00
|
|
|
yarn build:res
|
|
|
|
popd
|