cabal fixes + try travis script

This commit is contained in:
Aditya Manthramurthy 2017-02-10 18:40:47 +05:30
parent d46f79c806
commit 5d62839cfa
2 changed files with 41 additions and 2 deletions

40
.travis.yml Normal file
View File

@ -0,0 +1,40 @@
# 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
# 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

View File

@ -3,11 +3,10 @@ version: 0.0.1
synopsis: A Minio client library, compatible with S3 like services.
description: Please see README.md
homepage: https://github.com/donatello/minio-hs#readme
license: BSD3
license: Apache-2.0
license-file: LICENSE
author: Aditya Manthramurthy, Krishnan Parthasarathi
maintainer: aditya.mmy@gmail.com
copyright: Apache-2.0
category: Network, AWS, Object Storage
build-type: Simple
-- extra-source-files: