summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2013-07-13 15:15:43 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2013-07-13 15:15:43 -0700
commit15984adaaa1eea73b268c669a2508635d07b56b1 (patch)
tree60453a4a7b7efc2dee837fb1394a04fe320ec435 /.travis.yml
parent3b1898dec93de07e73ae7d297cc924515a5df7ca (diff)
Another attempt at .travis.yml.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml13
1 files changed, 7 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml
index 2d343b778..1216994db 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,8 +1,9 @@
language: haskell
-# before_install:
-# - git submodule update --init --recursive
+before_install:
+ - cabal install cabal-dev
+ - 'git clone https://github.com/jgm/pandoc-types && cabal-dev add-source pandoc-types'
+ - 'git clone https://github.com/jgm/citeproc-hs && cabal-dev add-source citeproc-hs'
install:
- - make prep
-# - cabal update
-# - cabal install --enable-tests
-script: cabal-dev configure --enable-tests && cabal-dev build && cabal-dev test
+ - cabal-dev install-deps --enable-tests
+script:
+ - 'cabal-dev configure --enable-tests && cabal-dev build && cabal-dev test'