2012-09-15 02:15:26 -04:00
|
|
|
language: ruby
|
2015-07-21 20:43:11 -04:00
|
|
|
sudo: false
|
2011-11-06 07:16:54 -05:00
|
|
|
rvm:
|
2012-01-26 09:49:43 -05:00
|
|
|
- 1.9.3
|
2013-02-24 17:14:31 -05:00
|
|
|
- 2.0.0
|
2015-01-17 12:16:16 -05:00
|
|
|
- 2.1
|
|
|
|
- 2.2
|
2012-09-09 18:57:31 -04:00
|
|
|
- jruby-19mode
|
2015-07-21 20:43:11 -04:00
|
|
|
- jruby-9.0.3.0
|
2014-05-13 17:49:54 -04:00
|
|
|
- rbx-2
|
2012-09-09 18:57:31 -04:00
|
|
|
gemfile:
|
|
|
|
- Gemfile
|
|
|
|
matrix:
|
2013-11-14 12:43:36 -05:00
|
|
|
include:
|
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
|
2015-01-17 12:16:16 -05:00
|
|
|
rvm: 2.2
|
2015-05-21 14:00:36 -04:00
|
|
|
- gemfile: Gemfile
|
|
|
|
rvm: 2.2
|
|
|
|
env: CAPYBARA_CHROME=true
|
2013-11-14 12:43:36 -05:00
|
|
|
allow_failures:
|
|
|
|
- gemfile: gemfiles/Gemfile.beta-versions
|
2015-07-21 20:43:11 -04:00
|
|
|
- rvm: jruby-9.0.3.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:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- google-chrome
|
|
|
|
packages:
|
|
|
|
- google-chrome-stable
|
|
|
|
- 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"
|