mirror of
https://github.com/status-im/EIPs.git
synced 2025-02-11 14:26:26 +00:00
abcf1153ae
* Update social includes to link to repo, not org * Add support for eip_validator by Makoto Inoue * Fix external links in EIPs * Change eip_validator to 0.3.0 * Fix dependency issues * Update eip_validator to 0.3.4 * Add more condition on EIP input files * Bump eip_validator to ignore invalid eip file format * Fix EIP 86
28 lines
638 B
YAML
28 lines
638 B
YAML
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'
|
|
- rvm: 2.2.5
|
|
env: TASK='eip-validator'
|
|
allow_failures:
|
|
- rvm: 2.2.5
|
|
env: TASK='htmlproofer-external'
|