2017-01-19 20:51:20 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-04-09 22:20:33 +08:00
|
|
|
set -ev
|
|
|
|
|
|
|
|
handle_error() {
|
|
|
|
EXIT_CODE=$?
|
|
|
|
exit $EXIT_CODE
|
|
|
|
}
|
|
|
|
|
|
|
|
trap 'handle_error' ERR
|
2017-01-19 20:51:20 +08:00
|
|
|
|
2020-08-03 23:02:26 +08:00
|
|
|
echo "--- Building Element"
|
2020-12-03 21:56:27 +08:00
|
|
|
scripts/ci/layered.sh
|
2020-11-21 01:55:48 +08:00
|
|
|
cd element-web
|
2020-12-03 21:56:27 +08:00
|
|
|
element_web_dir=`pwd`
|
2020-04-17 06:26:29 +08:00
|
|
|
CI_PACKAGE=true yarn build
|
2020-11-21 01:55:48 +08:00
|
|
|
cd ..
|
2021-06-19 01:32:45 +08:00
|
|
|
# prepare end to end tests
|
2020-04-17 06:26:29 +08:00
|
|
|
pushd test/end-to-end-tests
|
2020-12-03 21:56:27 +08:00
|
|
|
ln -s $element_web_dir element/element-web
|
2020-04-17 06:26:29 +08:00
|
|
|
# PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true ./install.sh
|
|
|
|
# CHROME_PATH=$(which google-chrome-stable) ./run.sh
|
|
|
|
echo "--- Install synapse & other dependencies"
|
|
|
|
./install.sh
|
2020-12-03 21:56:27 +08:00
|
|
|
# install static webserver to server symlinked local copy of element
|
|
|
|
./element/install-webserver.sh
|
2020-04-17 06:26:29 +08:00
|
|
|
popd
|