forked from pidcodes/pidcodes.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
28 lines (22 loc) · 643 Bytes
/
.travis.yml
File metadata and controls
28 lines (22 loc) · 643 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
sudo: false # route your build to the container-based infrastructure for a faster build
language: ruby
# Cache Ruby bundles
cache: bundler
before_script:
- bundle exec github-pages versions
# 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.3.0
env: TASK='htmlproofer'
- rvm: 2.3.0
env: TASK='htmlproofer-external'
allow_failures:
- rvm: 2.3.0
env: TASK='htmlproofer-external'