forked from bitcoin-core/bitcoincore.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (28 loc) · 926 Bytes
/
.travis.yml
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
29
30
31
32
33
34
language: ruby
rvm:
- "2.2.2"
## Allows use of docker-based containers, which are more available than
## the xen-based (or whatever) VMs, so builds tend to happen sooner
sudo: false
## Save bundler deps. Requires sudo: false
cache: bundler
## Disable external link checking to prevent spurious failures because
## of other people's downtime. This can also avoid wasting their
## bandwidth.
#
## Build all possible jekyll pages for use with link checking.
script: bundle exec jekyll build --future --drafts --unpublished && bundle exec htmlproof --disable-external ./_site
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
# Whitelist all branches since gh-pages branch is blacklisted by default
branches:
only:
- gh-pages
- /.*/
notifications:
irc:
channels:
- "chat.freenode.net#bitcoin-core-website"
on_success: change
on_failure: change