2017-01-19 15:51:20 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-04-09 17:20:33 +03:00
|
|
|
set -ev
|
|
|
|
|
|
|
|
handle_error() {
|
|
|
|
EXIT_CODE=$?
|
|
|
|
exit $EXIT_CODE
|
|
|
|
}
|
|
|
|
|
|
|
|
trap 'handle_error' ERR
|
2017-01-19 15:51:20 +03:00
|
|
|
|
2020-08-03 18:02:26 +03:00
|
|
|
echo "--- Building Element"
|
2020-12-03 16:56:27 +03:00
|
|
|
scripts/ci/layered.sh
|
2020-11-20 20:55:48 +03:00
|
|
|
cd element-web
|
2020-12-03 16:56:27 +03:00
|
|
|
element_web_dir=`pwd`
|
2020-04-17 01:26:29 +03:00
|
|
|
CI_PACKAGE=true yarn build
|
2020-11-20 20:55:48 +03:00
|
|
|
cd ..
|
2021-06-18 20:32:45 +03:00
|
|
|
# prepare end to end tests
|
2020-04-17 01:26:29 +03:00
|
|
|
pushd test/end-to-end-tests
|
2020-12-03 16:56:27 +03:00
|
|
|
ln -s $element_web_dir element/element-web
|
2020-04-17 01:26:29 +03: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 16:56:27 +03:00
|
|
|
# install static webserver to server symlinked local copy of element
|
|
|
|
./element/install-webserver.sh
|
2020-04-17 01:26:29 +03:00
|
|
|
popd
|