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

41 lines
1.1 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.
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
# 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-20 16:12:59 -07:00
# Now set up the react-sdk
yarn link matrix-js-sdk
yarn link matrix-analytics-events
2020-01-20 16:12:59 -07:00
yarn link
yarn install --pure-lockfile
yarn reskindex
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