diff options
| author | Heather Miller <heather.miller@epfl.ch> | 2016-10-17 00:56:17 -0400 |
|---|---|---|
| committer | Heather Miller <heather.miller@epfl.ch> | 2016-10-17 00:56:17 -0400 |
| commit | 583a2ba8eeb333201a3706d83f7750c4df1a7429 (patch) | |
| tree | bfae0517b04958e69eebc6414def883e0dc0b25d | |
| parent | b15115909fa77235843f4bb8f4a05afe0a4adabb (diff) | |
Setting up Travis build
| -rw-r--r-- | .travis.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..bf232f9 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,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
\ No newline at end of file |
