flat-mcmc

Painless, efficient, general-purpose sampling from continuous distributions.
Log | Files | Refs | README | LICENSE

commit 1ffe11f520412b1be9da537f59e72522997439f5
parent a18cc3eee6bb54c6751f2842a3c68e06078a8a20
Author: Jared Tobin <jared@jtobin.ca>
Date:   Wed, 30 Mar 2016 18:11:31 +0700

Update travis stuff.

Diffstat:
M.travis.yml | 23++++++++++++++++++++++-
Astack-travis.yaml | 9+++++++++
2 files changed, 31 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml @@ -1 +1,22 @@ -language: haskell +sudo: false +language: c + +addons: + apt: + packages: + - libgmp-dev + +env: + STACK_YAML: stack-travis.yaml + +before_install: +- mkdir -p ~/.local/bin +- export PATH=$HOME/.local/bin:$PATH +- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack' + +script: stack --no-terminal --install-ghc test --haddock + +cache: + directories: + - $HOME/.stack + diff --git a/stack-travis.yaml b/stack-travis.yaml @@ -0,0 +1,9 @@ +flags: {} +packages: +- '.' +extra-deps: [] +resolver: lts-5.2 +compiler: ghc-7.10.3 +system-ghc: false +install-ghc: true +