unison/.travis.yml

51 lines
1.2 KiB
YAML

# https://docs.haskellstack.org/en/stable/travis_ci/
# run on containerized infrastructure hopefully
dist: trusty
sudo: false
language: generic
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack
- $HOME/.ivy2/cache
- $HOME/.sbt
before_cache:
# Cleanup the cached directories to avoid unnecessary cache updates
- find $HOME/.ivy2/cache -name "ivydata-*.properties" -delete
- find $HOME/.sbt -name "*.lock" -delete
# diagnostic stuff, temporary
- find $HOME/.stack
# - find $HOME/.ivy2/cache
# - find $HOME/.sbt
# - ls -ld /opt/ghc/*
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'
# Configure stack to use the system GHC installation
install:
# - stack ghc -- --version
- travis_wait stack --no-terminal setup
- travis_wait stack --no-terminal test --only-snapshot
- travis_wait stack --no-terminal build
script:
- stack --no-terminal exec tests
- pushd runtime-jvm
- sbt main/test:run
- popd
addons:
apt:
sources:
# - hvr-ghc
packages:
# - ghc-8.0.1