2018-03-21 18:59:12 +00:00
|
|
|
sudo: false # route your build to the container-based infrastructure for a faster build
|
|
|
|
|
|
|
|
language: ruby
|
|
|
|
|
|
|
|
# Cache Ruby bundles
|
|
|
|
cache: bundler
|
|
|
|
|
|
|
|
# Assume bundler is being used, therefore
|
|
|
|
# the `install` step will run `bundle install` by default.
|
|
|
|
script: "bash -ex .travis-ci.sh"
|
|
|
|
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
|
|
|
include:
|
|
|
|
- rvm: 2.2.5
|
|
|
|
env: TASK='htmlproofer'
|
|
|
|
- rvm: 2.2.5
|
|
|
|
env: TASK='htmlproofer-external'
|
2018-03-27 16:24:00 +00:00
|
|
|
- rvm: 2.2.5
|
|
|
|
env: TASK='eip-validator'
|
2018-03-21 18:59:12 +00:00
|
|
|
allow_failures:
|
|
|
|
- rvm: 2.2.5
|
|
|
|
env: TASK='htmlproofer-external'
|
2018-04-03 19:02:04 +00:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
webhooks:
|
|
|
|
urls:
|
|
|
|
- https://ethlab-183014.appspot.com/merge/
|
|
|
|
on_success: always
|