aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorHeather Miller <heather.miller@epfl.ch>2016-10-17 00:56:17 -0400
committerHeather Miller <heather.miller@epfl.ch>2016-10-17 00:56:17 -0400
commit583a2ba8eeb333201a3706d83f7750c4df1a7429 (patch)
treebfae0517b04958e69eebc6414def883e0dc0b25d /.travis.yml
parentb15115909fa77235843f4bb8f4a05afe0a4adabb (diff)
Setting up Travis build
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml18
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