ringo/.travis.yml

41 lines
1.2 KiB
YAML
Raw Normal View History

2015-12-30 00:19:57 +05:30
# Use new container infrastructure to enable caching
sudo: false
# Choose a lightweight base image; we provide our own build tools.
language: c
# GHC depends on GMP. You can add other dependencies here as well.
addons:
apt:
packages:
- libgmp-dev
# The different configurations we want to test. You could also do things like
# change flags or use --stack-yaml to point to a different file.
env:
- ARGS=""
- ARGS="--resolver lts-2"
- ARGS="--resolver lts-3"
2016-01-07 03:08:37 +05:30
- ARGS="--resolver lts-4"
2016-01-27 01:09:07 +05:30
- ARGS="--resolver lts-5"
2016-05-26 19:05:10 +05:30
- ARGS="--resolver lts-6"
2016-09-16 01:45:17 +05:30
- ARGS="--resolver lts-7"
2015-12-30 00:19:57 +05:30
- ARGS="--resolver lts"
- ARGS="--resolver nightly"
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'
# This line does all of the work: installs GHC if necessary, build the library,
# executables, and test suites, and runs the test suites. --no-terminal works
# around some quirks in Travis's terminal implementation.
2016-01-01 21:02:10 +05:30
script: stack $ARGS --no-terminal --install-ghc install --test --fast
2015-12-30 00:19:57 +05:30
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack