Files
element-web/scripts/ci/layered.sh
T

44 lines
1.3 KiB
Bash
Raw Normal View History

2020-01-20 16:12:59 -07:00
#!/bin/bash
2020-11-20 17:55:48 +00:00
# Creates a layered environment with the full repo for the app and SDKs cloned
# 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-20 16:12:59 -07:00
2020-11-20 17:55:48 +00: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-20 16:12:59 -07:00
# Set up the js-sdk first
2020-11-20 17:55:48 +00:00
scripts/fetchdep.sh matrix-org matrix-js-sdk
2020-01-20 16:12:59 -07:00
pushd matrix-js-sdk
yarn link
yarn install --pure-lockfile
2020-01-20 16:12:59 -07:00
popd
# Also set up matrix-analytics-events so we get the latest from
# the main branch or a branch with matching name
scripts/fetchdep.sh matrix-org matrix-analytics-events main
pushd matrix-analytics-events
yarn link
yarn install --pure-lockfile
yarn build:ts
popd
2020-01-20 16:12:59 -07:00
# Now set up the react-sdk
yarn link matrix-js-sdk
yarn link @matrix-org/analytics-events
2020-01-20 16:12:59 -07:00
yarn link
yarn install --pure-lockfile
2020-01-20 16:12:59 -07:00
2020-12-03 13:56:27 +00:00
# Finally, set up element-web
2020-11-20 17:55:48 +00:00
scripts/fetchdep.sh vector-im element-web
2020-12-03 13:56:27 +00:00
pushd element-web
2020-01-20 16:12:59 -07:00
yarn link matrix-js-sdk
yarn link matrix-react-sdk
yarn install --pure-lockfile
2020-01-20 16:12:59 -07:00
yarn build:res
popd