sampling

Basic sampling functionality for Haskell.
Log | Files | Refs | README | LICENSE

commit 61cf72e193d0a98560bc0fddb15054e3fdecf067
parent 368d862a63ea27133d165d1b15979a379208d499
Author: Jared Tobin <jared@jtobin.ca>
Date:   Tue,  9 Feb 2016 21:44:00 +1300

Tweak travis file.

Diffstat:
M.travis.yml | 10++++++++++
Mstack.yaml | 9+++++++--
2 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml @@ -3,6 +3,16 @@ sudo: false env: STACK_YAML: stack.yml +cache: + directories: + - "~/.stack" + +before_install: + - mkdir -p ~/.local/bin + - export PATH=~/.local/bin:$PATH + - travis_retry curl -L https://github.com/commercialhaskell/stack/releases/download/v0.1.10.1/stack-0.1.10.1-${TRAVIS_OS_NAME}-x86_64.tar.gz | tar xz + - mv stack-0.1.10.1-${TRAVIS_OS_NAME}-x86_64/stack ~/.local/bin + install: - stack --no-terminal --skip-ghc-check setup - stack --no-terminal --skip-ghc-check build --copy-bins diff --git a/stack.yaml b/stack.yaml @@ -1,6 +1,11 @@ resolver: lts-5.1 -packages: -- '.' +system-ghc: false +install-ghc: true +compiler: ghc-7.10.3 +compiler-check: newer-minor +require-stack-version: ">= 0.1.7" + +packages: ['.'] extra-deps: [] flags: {} extra-package-dbs: []