You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.1 KiB
Bash
31 lines
1.1 KiB
Bash
#!/bin/bash
|
|
|
|
# The script is intended for use on Travis with Trusty distribution
|
|
# It installs in-browser tests dependencies and prepares Roundcube instance
|
|
|
|
GMV=1.5.11
|
|
CHROMEVERSION=$(google-chrome-stable --version | tr -cd [:digit:]. | cut -d . -f 1)
|
|
GMARGS="-Dgreenmail.setup.all -Dgreenmail.users=test:test -Dgreenmail.startup.timeout=3000"
|
|
|
|
# Roundcube tests and instance configuration
|
|
cp .ci/config-test.inc.php config/config-test.inc.php
|
|
|
|
# Make temp and logs writeable
|
|
sudo chmod 777 temp logs
|
|
|
|
# Install javascript dependencies
|
|
bin/install-jsdeps.sh
|
|
|
|
# Compile Elastic's styles
|
|
lessc skins/elastic/styles/styles.less > skins/elastic/styles/styles.css
|
|
lessc skins/elastic/styles/print.less > skins/elastic/styles/print.css
|
|
lessc skins/elastic/styles/embed.less > skins/elastic/styles/embed.css
|
|
|
|
# Install proper WebDriver version for installed Chrome browser
|
|
php tests/Browser/install.php $CHROMEVERSION
|
|
|
|
# GreenMail server download, setup and start
|
|
wget https://repo1.maven.org/maven2/com/icegreen/greenmail-standalone/$GMV/greenmail-standalone-$GMV.jar \
|
|
&& (sudo java $GMARGS -jar greenmail-standalone-$GMV.jar &) \
|
|
&& sleep 5
|