Sha256: ee06157a5e781725abd777f51b7dc35bf0a3d45a1a489e25a8366916c1a7710c

Contents?: true

Size: 1.36 KB

Versions: 3

Compression:

Stored size: 1.36 KB

Contents

#!/bin/bash

set -e
set -x

sh -e /etc/init.d/xvfb start
git submodule update --init

if [[ "$RAKE_TASK" = "yard:doctest" ]]; then
  mkdir ~/.yard
  bundle exec yard config -a autoload_plugins yard-doctest
fi

if [[ "$RAKE_TASK" = "spec:chrome" ]] || [[ "$RAKE_TASK" = "yard:doctest" ]]; then
  # 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:firefox" ]]; then
  curl -L -O "http://raw.githubusercontent.com/watir/driver_binaries/master/geckodriver"
  chmod +x geckodriver

  mv geckodriver travis-drivers/geckodriver
  geckodriver --version
  firefox --version
fi

if [[ "$RAKE_TASK" = "spec:phantomjs" ]]; then
  curl -L -O "http://raw.githubusercontent.com/watir/driver_binaries/master/phantomjs"
  chmod +x phantomjs

  mv phantomjs travis-drivers/phantomjs
  phantomjs --version
fi

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
watir-6.0.0.beta3 support/travis.sh
watir-6.0.0.beta2 support/travis.sh
watir-6.0.0.beta1 support/travis.sh