mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
40 lines
896 B
YAML
40 lines
896 B
YAML
language: ruby
|
|
rvm:
|
|
- 1.9.3
|
|
- 2.1
|
|
- 2.2
|
|
- jruby-19mode
|
|
notifications:
|
|
email: false
|
|
script: xvfb-run bundle exec rake
|
|
env:
|
|
global:
|
|
- BUNDLE_JOBS=4
|
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|
|
- QMAKE=/usr/lib/x86_64-linux-gnu/qt4/bin/qmake
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-sdk-team
|
|
packages:
|
|
- libqt5webkit5-dev
|
|
- qtdeclarative5-dev
|
|
matrix:
|
|
include:
|
|
- rvm: 1.9.3
|
|
gemfile: gemfiles/2.6.gemfile
|
|
env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
|
|
- rvm: 1.9.3
|
|
gemfile: gemfiles/2.5.gemfile
|
|
env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
|
|
- rvm: 2.2
|
|
gemfile: gemfiles/master.gemfile
|
|
env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
|
|
allow_failures:
|
|
- gemfile: gemfiles/master.gemfile
|
|
gemfile:
|
|
- gemfiles/2.6.gemfile
|
|
- gemfiles/2.5.gemfile
|
|
before_install:
|
|
- gem install bundler
|
|
install: bundle
|