Skip to content

Commit

Permalink
chore(): travis stack based build
Browse files Browse the repository at this point in the history
  • Loading branch information
gbataille committed Feb 8, 2017
1 parent 5652cee commit ca1b489
Showing 1 changed file with 38 additions and 3 deletions.
41 changes: 38 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,40 @@
language: haskell
# This is the simple Travis configuration, which is intended for use
# on applications which do not require cross-platform and
# multiple-GHC-version support. For more information and other
# options, see:
#
# https://docs.haskellstack.org/en/stable/travis_ci/
#
# Copy these contents into the root directory of your Github project in a file
# named .travis.yml

# Use new container infrastructure to enable caching
sudo: false

ghc:
- 7.8
# Do not choose a language; we provide our own build tools.
language: generic

# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack

# Ensure necessary system libraries are present
addons:
apt:
packages:
- libgmp-dev

before_install:
# Download and unpack the stack executable
- 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'

install:
# Build dependencies
- stack --no-terminal --install-ghc test --only-dependencies

script:
# Build the package, its tests, and its docs and run the tests
- stack --no-terminal test --haddock --no-haddock-deps

0 comments on commit ca1b489

Please sign in to comment.