summaryrefslogtreecommitdiffstats
path: root/travis.sh
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2017-06-16 13:29:02 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2017-06-17 17:28:21 +0200
commitcab4f87c88120c23c6173edbd5ddc6e18a862cfc (patch)
tree3d88a2d9fd5fc550ea3bcac9bf5455701cb254c0 /travis.sh
parent8edf9e906a56163c23d34230bcab1b8c9f87f849 (diff)
downloadsonarqube-cab4f87c88120c23c6173edbd5ddc6e18a862cfc.tar.gz
sonarqube-cab4f87c88120c23c6173edbd5ddc6e18a862cfc.zip
Drop support of PhantomJS in integration tests
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh18
1 files changed, 1 insertions, 17 deletions
diff --git a/travis.sh b/travis.sh
index b317f298813..0cc60cad32c 100755
--- a/travis.sh
+++ b/travis.sh
@@ -3,21 +3,6 @@ set -euo pipefail
./.travis/setup_ramdisk.sh
-function installPhantomJs {
- echo "Setup PhantomJS 2.1"
- mkdir -p ~/phantomjs
- pushd ~/phantomjs > /dev/null
- if [ ! -d "phantomjs-2.1.1-linux-x86_64" ]; then
- echo "Download PhantomJS"
- wget https://repox.sonarsource.com/public-3rd-parties/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 -O phantomjs-2.1.1-linux-x86_64.tar.bz2
- tar -xf phantomjs-2.1.1-linux-x86_64.tar.bz2
- rm phantomjs-2.1.1-linux-x86_64.tar.bz2
- fi
- popd > /dev/null
- export PHANTOMJS_HOME=~/phantomjs/phantomjs-2.1.1-linux-x86_64
- export PATH=$PHANTOMJS_HOME/bin:$PATH
-}
-
#
# A (too) old version of JDK8 is installed by default on Travis.
# This method is preferred over Travis apt oracle-java8-installer because
@@ -181,8 +166,7 @@ BUILD)
mvn install $MAVEN_ARGS -Dsource.skip=true
fi
- installPhantomJs
- ./run-integration-tests.sh "Lite" "" -Dorchestrator.browser=phantomjs
+ ./run-integration-tests.sh "Lite" ""
;;
WEB_TESTS)