mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-11 17:16:30 +03:00
29 lines
839 B
YAML
29 lines
839 B
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
|
|
|
|
before_cache:
|
|
# Do any cleanup here to avoid caching junk.
|
|
|
|
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:
|
|
- stack ghc -- --version
|
|
- stack --no-terminal build
|
|
- stack --no-terminal exec tests
|
|
- stack --no-terminal exec transcripts
|
|
# fail if running transcripts modified any versioned files
|
|
- git diff
|
|
- x=`git status --porcelain -uno` bash -c 'if [[ -n $x ]]; then echo "$x" && false; fi'
|