Update CI to ubuntu xenial and chromium

trusty is rather old, living on the edge baby! Also switch to chromium for
testing, the latest google-chrome version has problems to start with webdrivers
(DevToolsActivePort file doesn't exist).
This commit is contained in:
Henne Vogelsang 2019-07-16 23:38:36 +02:00
parent 9b12830c8f
commit e18174a3b3
No known key found for this signature in database
GPG key ID: 9D6164C2955FADE0

View file

@ -1,17 +1,19 @@
sudo: required
dist: trusty
dist: xenial
addons:
apt:
packages:
- chromium-browser
language: ruby
cache: bundler
rvm:
- 2.5.0@osem --ignore-gemsets
branches:
except:
- /^depfu/.*$/
before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- "echo `phantomjs -v`"
addons:
chrome: stable
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v $(tail -n 1 Gemfile.lock)
notifications:
email:
on_success: change
@ -23,6 +25,7 @@ notifications:
on_failure: change
before_script:
- RAILS_ENV=test bundle exec rake db:bootstrap --trace
- RAILS_ENV=test bundle exec bin/rails webdrivers:chromedriver:update
script:
- "./travis_script.sh $TEST_SUITE"
env: