Skip to content

Commit a0f0c64

Browse files
hardingjnewbery
authored andcommitted
Add .travis.yml for Travis CI
1 parent 0346c0d commit a0f0c64

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.travis.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
language: ruby
2+
rvm:
3+
- "2.2.2"
4+
5+
## Allows use of docker-based containers, which are more available than
6+
## the xen-based (or whatever) VMs, so builds tend to happen sooner
7+
sudo: false
8+
9+
## Save bundler deps. Requires sudo: false
10+
cache: bundler
11+
12+
## Disable external link checking to prevent spurious failures because
13+
## of other people's downtime. This can also avoid wasting their
14+
## bandwidth.
15+
16+
## Build all possible jekyll pages for use with link checking.
17+
script:
18+
- make all
19+
20+
env:
21+
global:
22+
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
23+
24+
# Whitelist all branches
25+
branches:
26+
only:
27+
- master
28+
- /.*/

0 commit comments

Comments
 (0)