blob: bf232f9503aa52692116d7434db0b9a087175562 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# opt-in to Travis new infrastructure
sudo: false
language: ruby
# for faster builds
cache: bundler
env: BUNDLE_PATH=bundle-vendor/bundle
# we must override install, or Travis's default Gemfile support
# will kick in and use `vendor`, ignoring our BUNDLE_PATH
# declaration in `.bundle/config`
install:
- bundle install
script:
- bundle exec jekyll build
|