aboutsummaryrefslogtreecommitdiffstats
path: root/travis.sh
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2017-02-20 22:32:35 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2017-02-21 10:05:08 +0100
commit3fce43c5b883c551447cd81bb93be0ef0472b3cd (patch)
tree8155115db92ffe965ed950b3857b8da901f50524 /travis.sh
parent7def7f15c9d024f2941680b3a82bd8a35cbfcd7c (diff)
downloadsonarqube-3fce43c5b883c551447cd81bb93be0ef0472b3cd.tar.gz
sonarqube-3fce43c5b883c551447cd81bb93be0ef0472b3cd.zip
Add logs when Travis downloads phantomjs and JDK8
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/travis.sh b/travis.sh
index 8e32e42eb33..06cd9b812f5 100755
--- a/travis.sh
+++ b/travis.sh
@@ -6,6 +6,7 @@ function installPhantomJs {
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
@@ -23,6 +24,7 @@ function installJdk8 {
mkdir -p ~/jvm
pushd ~/jvm > /dev/null
if [ ! -d "jdk1.8.0_92" ]; then
+ echo "Download JDK8"
wget -c --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u92-b14/jdk-8u92-linux-x64.tar.gz
tar xzf jdk-8u92-linux-x64.tar.gz
rm jdk-8u92-linux-x64.tar.gz