hazelcast-rest/.travis.yml
Evgenii Akentev f926c8face Add travis
2019-09-25 20:02:17 +03:00

33 lines
840 B
YAML

# Use new container infrastructure to enable caching
sudo: false
# Do not choose a language; we provide our own build tools.
language: generic
env:
- STACK_YAML=stack.yaml
- STACK_YAML=ghc-802.yaml
- STACK_YAML=ghc-822.yaml
- STACK_YAML=ghc-843.yaml
# 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'
script:
# Build the package, its tests, and its docs and run the tests
- stack --no-terminal --install-ghc test --haddock --no-haddock-deps