blob: dbb16d658152a4eb7eac64a995e2248ff4d9c5f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# opt-in to Travis new infrastructure
sudo: false
language: ruby
rvm:
- 2.0.0-p648
# 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
|