2012-09-15 02:15:26 -04:00
|
|
|
language: ruby
|
2016-04-14 19:59:03 -04:00
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
2011-11-06 07:16:54 -05:00
|
|
|
rvm:
|
2013-02-24 17:14:31 -05:00
|
|
|
- 2.0.0
|
2015-01-17 12:16:16 -05:00
|
|
|
- 2.2
|
2016-04-15 15:05:16 -04:00
|
|
|
- jruby-9.0.5.0
|
2016-04-15 15:12:23 -04:00
|
|
|
- rbx-3.26
|
2012-09-09 18:57:31 -04:00
|
|
|
gemfile:
|
|
|
|
- Gemfile
|
|
|
|
matrix:
|
2013-11-14 12:43:36 -05:00
|
|
|
include:
|
2016-04-04 16:26:29 -04:00
|
|
|
- gemfile: Gemfile
|
2016-07-13 16:13:33 -04:00
|
|
|
rvm: 2.3.1
|
2016-04-04 16:26:29 -04:00
|
|
|
env: WINDOW_TEST=true
|
2016-07-22 13:21:24 -04:00
|
|
|
- gemfile: gemfiles/Gemfile.rspec-34
|
2016-07-13 16:13:33 -04:00
|
|
|
rvm: 2.3.1
|
|
|
|
env: CAPYBARA_CHROME=true
|
2015-12-10 13:01:54 -05:00
|
|
|
- gemfile: gemfiles/Gemfile.ruby-19
|
|
|
|
rvm: 1.9.3
|
2014-04-03 17:26:34 -04:00
|
|
|
- gemfile: gemfiles/Gemfile.base-versions
|
|
|
|
rvm: 1.9.3
|
2013-11-14 12:43:36 -05:00
|
|
|
- gemfile: gemfiles/Gemfile.beta-versions
|
2016-07-13 16:13:33 -04:00
|
|
|
rvm: 2.4.0-preview1
|
2013-11-14 12:43:36 -05:00
|
|
|
allow_failures:
|
|
|
|
- gemfile: gemfiles/Gemfile.beta-versions
|
2016-04-15 15:17:56 -04:00
|
|
|
- rvm: jruby-9.0.5.0
|
2014-06-19 19:26:12 -04:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|
2015-01-17 12:16:16 -05:00
|
|
|
|
2015-07-21 20:43:11 -04:00
|
|
|
addons:
|
2016-06-30 12:42:53 -04:00
|
|
|
firefox: latest
|
2015-07-21 20:43:11 -04:00
|
|
|
apt:
|
2016-04-15 17:04:15 -04:00
|
|
|
sources:
|
|
|
|
- google-chrome
|
2015-07-21 20:43:11 -04:00
|
|
|
packages:
|
2016-04-15 17:04:15 -04:00
|
|
|
- google-chrome-stable
|
2015-07-21 20:43:11 -04:00
|
|
|
- awesome
|
|
|
|
|
2013-02-25 14:13:03 -05:00
|
|
|
before_install:
|
2015-05-21 14:00:36 -04:00
|
|
|
- if [ $CAPYBARA_CHROME ]; then
|
|
|
|
CHROMEDRIVER_VERSION=$(wget -q -O - http://chromedriver.storage.googleapis.com/LATEST_RELEASE);
|
|
|
|
CHROMEDRIVER_URL="http://chromedriver.storage.googleapis.com/$CHROMEDRIVER_VERSION/chromedriver_linux64.zip";
|
2015-07-21 20:43:11 -04:00
|
|
|
FILE=`mktemp`; wget "$CHROMEDRIVER_URL" -qO $FILE && unzip $FILE chromedriver -d ~; rm $FILE; chmod 777 ~/chromedriver;
|
2015-05-21 14:00:36 -04:00
|
|
|
fi
|
2011-11-06 07:16:54 -05:00
|
|
|
before_script:
|
2012-01-26 09:50:24 -05:00
|
|
|
- export DISPLAY=:99.0
|
2014-04-10 03:20:27 -04:00
|
|
|
- sh -e /etc/init.d/xvfb start
|
2014-04-24 18:38:42 -04:00
|
|
|
- sleep 1
|
2014-05-28 15:34:31 -04:00
|
|
|
- mkdir -p ~/.config/awesome
|
|
|
|
- echo "require('awful'); tags = {}; tags[1] = awful.tag({'name'})" > ~/.config/awesome/rc.lua
|
2014-04-24 18:38:42 -04:00
|
|
|
- "awesome &"
|
2013-02-25 14:13:03 -05:00
|
|
|
script: "bundle exec rake travis"
|