diff --git a/tools/travis/before_install.sh b/tools/travis/before_install.sh index 9ced6d0b72b..7b8fb7c33bc 100755 --- a/tools/travis/before_install.sh +++ b/tools/travis/before_install.sh @@ -60,11 +60,6 @@ sudo apt-get -q -y install mysql-server > /dev/null sudo /etc/init.d/mysql start -echo -e "\nInstalling Tomcat: " -wget -q -O tomcat.tar.gz http://archive.apache.org/dist/tomcat/tomcat-6/v6.0.33/bin/apache-tomcat-6.0.33.tar.gz -sudo mkdir -p /opt/tomcat -sudo tar xfv tomcat.tar.gz -C /opt/tomcat --strip 1 > /dev/null - echo -e "\nInstalling Development tools: " RETRY_COUNT=3 diff --git a/tools/travis/before_script.sh b/tools/travis/before_script.sh index ead285136e8..7f584612dcd 100755 --- a/tools/travis/before_script.sh +++ b/tools/travis/before_script.sh @@ -43,5 +43,5 @@ echo -e "\nStarting simulator" mvn -Dsimulator -pl :cloud-client-ui jetty:run 2>&1 > /tmp/jetty-log & while ! nc -vzw 5 localhost 8096 2>&1 > /dev/null; do grep Exception /tmp/jetty-log; sleep 10; done -echo -e "\nStarting simulator" +echo -e "\nStarting DataCenter deployment" python -m marvin.deployDataCenter -i setup/dev/advanced.cfg 2>&1 || true