support/travis.sh in watir-webdriver-0.9.1 vs support/travis.sh in watir-webdriver-0.9.2
- old
+ new
@@ -1,24 +1,35 @@
-#/bin/sh
+#!/bin/bash
set -e
set -x
sh -e /etc/init.d/xvfb start
git submodule update --init
-mkdir ~/.yard
-bundle exec yard config -a autoload_plugins yard-doctest
+if [[ "$RAKE_TASK" = "yard:doctest" ]]; then
+ mkdir ~/.yard
+ bundle exec yard config -a autoload_plugins yard-doctest
+fi
if [[ "$RAKE_TASK" = "spec:chrome" ]]; then
- export CHROME_REVISION=`curl -s http://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64/LAST_CHANGE`
- export CHROMEDRIVER_VERSION=`curl -s http://chromedriver.storage.googleapis.com/LATEST_RELEASE`
-
+ # https://omahaproxy.appspot.com
+ # https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html?prefix=Linux_x64/
+ CHROME_REVISION=386257
curl -L -O "http://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64/${CHROME_REVISION}/chrome-linux.zip"
unzip chrome-linux.zip
+ CHROMEDRIVER_VERSION=$(curl -s http://chromedriver.storage.googleapis.com/LATEST_RELEASE)
curl -L -O "http://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip"
unzip chromedriver_linux64.zip
mv chromedriver chrome-linux/chromedriver
chmod +x chrome-linux/chromedriver
+fi
+
+if [[ "$RAKE_TASK" = "spec:phantomjs" ]]; then
+ curl -L -O "https://bintray.com/artifact/download/tfortner/phantomjs-clone/p/phantomjs"
+ chmod +x phantomjs
+
+ mv phantomjs travis-phantomjs/phantomjs
+ phantomjs --version
fi