element-web/scripts/ci/end-to-end-tests.sh

44 lines
1.0 KiB
Bash
Raw Normal View History

#!/bin/bash
#
2019-03-14 00:42:05 +01:00
# script which is run by the CI build (after `yarn test`).
#
# clones riot-web develop and runs the tests against our version of react-sdk.
2019-04-09 16:20:33 +02:00
set -ev
upload_logs() {
2019-04-09 17:27:49 +02:00
echo "--- Uploading logs"
2019-04-09 17:19:29 +02:00
buildkite-agent artifact upload "logs/**/*;synapse/installations/consent/homeserver.log"
2019-04-09 16:20:33 +02:00
}
handle_error() {
EXIT_CODE=$?
if [ $TESTS_STARTED -eq 1 ]; then
upload_logs
fi
exit $EXIT_CODE
}
trap 'handle_error' ERR
RIOT_WEB_DIR=riot-web
REACT_SDK_DIR=`pwd`
2019-04-09 17:27:49 +02:00
echo "--- Building Riot"
2019-03-14 00:42:05 +01:00
scripts/ci/build.sh
# run end to end tests
pushd test/end-to-end-tests
ln -s $REACT_SDK_DIR/$RIOT_WEB_DIR riot/riot-web
# PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true ./install.sh
# CHROME_PATH=$(which google-chrome-stable) ./run.sh
2019-04-09 17:27:49 +02:00
echo "--- Install synapse & other dependencies"
./install.sh
# install static webserver to server symlinked local copy of riot
./riot/install-webserver.sh
mkdir logs || rm -r logs/*
2019-04-09 17:27:49 +02:00
echo "+++ Running end-to-end tests"
2019-04-09 16:20:33 +02:00
TESTS_STARTED=1
2019-04-09 17:16:39 +02:00
./run.sh --no-sandbox --log-directory logs/
popd