mirror of
https://github.com/thoughtbot/capybara-webkit
synced 2023-03-27 23:22:28 -04:00
Update Travis builds
* Test Capybara 2.2 and 2.3 compatibility on all platforms. * Drop support for Capybara 2.0. * Only test Qt 5 on 1.9.3. The C implementation is the same for all Ruby versions, so there's no need to test against all platforms.
This commit is contained in:
parent
67072bcfd1
commit
259bcd9fd4
1 changed files with 17 additions and 15 deletions
32
.travis.yml
32
.travis.yml
|
@ -1,28 +1,30 @@
|
|||
language: ruby
|
||||
rvm:
|
||||
- 1.9.3
|
||||
- 2.0.0
|
||||
- 2.1.2
|
||||
- jruby-19mode
|
||||
matrix:
|
||||
exclude:
|
||||
- rvm: 1.9.3
|
||||
gemfile: gemfiles/2.0.gemfile
|
||||
env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
|
||||
- rvm: 2.0.0
|
||||
gemfile: gemfiles/2.0.gemfile
|
||||
env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
|
||||
- rvm: jruby-19mode
|
||||
gemfile: gemfiles/2.0.gemfile
|
||||
env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
|
||||
notifications:
|
||||
email: false
|
||||
script: xvfb-run rake
|
||||
env:
|
||||
- QMAKE=/usr/bin/qmake
|
||||
- QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
|
||||
global:
|
||||
- BUNDLE_JOBS=4
|
||||
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
|
||||
matrix:
|
||||
include:
|
||||
- rvm: 1.9.3
|
||||
gemfile: gemfiles/2.1.gemfile
|
||||
env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
|
||||
- rvm: 1.9.3
|
||||
gemfile: gemfiles/2.2.gemfile
|
||||
env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
|
||||
- rvm: 1.9.3
|
||||
gemfile: gemfiles/2.3.gemfile
|
||||
env: QMAKE=/usr/lib/x86_64-linux-gnu/qt5/bin/qmake
|
||||
gemfile:
|
||||
- gemfiles/2.0.gemfile
|
||||
- gemfiles/2.1.gemfile
|
||||
- gemfiles/2.2.gemfile
|
||||
- gemfiles/2.3.gemfile
|
||||
before_install:
|
||||
- sudo apt-add-repository -y ppa:ubuntu-sdk-team/ppa
|
||||
- sudo apt-get update
|
||||
|
|
Loading…
Reference in a new issue