aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-11-21 07:19:51 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-11-21 07:19:51 -0800
commit0ea7cce895abf5b42d28c2ad477e46b4577a1833 (patch)
treeb327a858095a8db2bf3d7680cd1db1bbf75b8810 /.travis.yml
parentbd07432a0cf93b036877def699e38a8b63b6c822 (diff)
downloadpandoc-0ea7cce895abf5b42d28c2ad477e46b4577a1833.tar.gz
travis: install unreleased pandoc-types & texmath.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index dfbe28586..5272a4418 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -54,6 +54,14 @@ install:
echo "cabal build-cache MISS";
rm -rf $HOME/.cabsnap;
mkdir -p $HOME/.ghc $HOME/.cabal/lib $HOME/.cabal/share $HOME/.cabal/bin;
+ # install unreleased versions of pandoc-types and texmath from git repos
+ for repo in pandoc-types texmath; do \
+ git clone https://github.com/jgm/$repo; \
+ cd $repo; \
+ cabal install; \
+ cd ..; \
+ done
+ cd pandoc-types
cabal install --only-dependencies --enable-tests --enable-benchmarks;
fi