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