You've already forked pidcodes.github.com
mirror of
https://github.com/solokeys/pidcodes.github.com.git
synced 2026-03-11 17:14:52 -07:00
29 lines
643 B
YAML
29 lines
643 B
YAML
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'
|