2017-03-22 13:03:17 +03:00
# https://docs.travis-ci.com/user/customizing-the-build
2017-03-22 21:19:27 +03:00
# https://docs.travis-ci.com/user/caching/
# https://docs.travis-ci.com/user/languages/haskell/
# http://docs.haskellstack.org/en/stable/travis_ci.html
# https://raw.githubusercontent.com/commercialhaskell/stack/master/doc/travis-simple.yml
# https://raw.githubusercontent.com/commercialhaskell/stack/master/doc/travis-complex.yml
# https://github.com/hvr/multi-ghc-travis#user-content-travisyml-template-for-non-container-based-infrastructure
2017-03-22 13:03:17 +03:00
#
# The Build Lifecycle #
# A build on Travis CI is made up of two steps:
# install: install any dependencies required
# script: run the build script
# You can run custom commands before the installation step (before_install), and before (before_script) or after (after_script) the script step.
# In a before_install step, you can install additional dependencies required by your project such as Ubuntu packages or custom services.
# You can perform additional steps when your build succeeds or fails using the after_success (such as building documentation, or deploying to a custom server) or after_failure (such as uploading log files) options. In both after_failure and after_success, you can access the build result using the $TRAVIS_TEST_RESULT environment variable.
# The complete build lifecycle, including three optional deployment steps and after checking out the git repository and changing to the repository directory, is:
#
# OPTIONAL Install apt addons
# OPTIONAL Install cache components
# before_install
# install
# before_script
# script
# OPTIONAL before_cache (for cleaning up cache)
2017-03-22 21:19:27 +03:00
# Travis CI uploads the cache after the script phase of the build, but before either after_success or after_failure.
# Failure to upload the cache does not mark the job as failed.
2017-03-22 13:03:17 +03:00
# after_success or after_failure
# OPTIONAL before_deploy
# OPTIONAL deploy
# OPTIONAL after_deploy
# after_script
2016-01-15 07:48:44 +03:00
2015-07-29 00:05:06 +03:00
sudo : false
2015-08-24 20:10:33 +03:00
2017-03-22 21:19:27 +03:00
dist : trusty
language : generic
2015-07-29 00:05:06 +03:00
cache :
2017-03-22 21:19:27 +03:00
timeout : 1000
2015-07-29 00:05:06 +03:00
directories :
2015-07-29 03:04:47 +03:00
- $HOME/.stack/
2017-03-22 13:11:54 +03:00
- $HOME/.local/bin/
2017-03-23 02:38:01 +03:00
# - shelltestrunner/
2015-07-29 00:05:06 +03:00
2017-03-22 11:40:25 +03:00
# addons:
# apt:
# packages:
# - libgmp-dev
branches :
only :
- master
- travis
# matrix:
# include:
# - env: ARGS=""
# - env: ARGS="--stack-yaml stack-7.10.yaml"
2017-03-22 13:03:17 +03:00
# - ghc: 7.10.3
# - ghc: 8.0.2
2017-03-22 11:40:25 +03:00
2017-03-22 21:19:27 +03:00
install : # ignores command failures, completed commands are collapsed in log
# stack
2015-07-29 03:04:47 +03:00
- mkdir -p ~/.local/bin
2016-01-15 07:48:44 +03:00
- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
2015-07-29 03:04:47 +03:00
- chmod a+x ~/.local/bin/stack
2017-03-22 21:19:27 +03:00
- export PATH=~/.local/bin:$PATH
2017-03-21 12:46:01 +03:00
- stack --version
2017-03-22 21:19:27 +03:00
# GHC
2017-03-23 01:36:09 +03:00
- stack setup
- stack exec -- ghc --version
2017-03-22 21:19:27 +03:00
# hledger dependencies
2017-03-23 01:36:09 +03:00
- stack build --only-dependencies --test #hledger-lib hledger hledger-ui #hledger-web hledger-api
2017-03-22 21:19:27 +03:00
# TODO: does this build some hledger packages, which get rebuilt later with -Werror ?
# hledger addon dependencies
2017-03-23 01:36:09 +03:00
- stack build Chart Chart-diagrams colour Diff here
2017-03-22 21:19:27 +03:00
# shelltestrunner, need unreleased installable version
2017-03-23 02:38:01 +03:00
#- if [ ! -d shelltestrunner ]; then git clone http://github.com/simonmichael/shelltestrunner; fi
- git clone http://github.com/simonmichael/shelltestrunner
2017-03-23 01:36:09 +03:00
- stack install --stack-yaml=shelltestrunner/stack.yaml --resolver=lts-8.2 --install-ghc
2017-03-22 11:14:07 +03:00
- shelltest --version
2015-08-24 20:15:21 +03:00
2017-03-22 21:19:27 +03:00
script : # all commands must succeed
# build hledger packages, ensuring no warnings, no haddock failures, package test suites passing
2017-03-23 01:36:09 +03:00
- stack build --ghc-options=-Werror --test --haddock --no-haddock-deps #hledger-lib hledger hledger-ui #hledger-web hledger-api
2017-03-22 13:03:17 +03:00
2017-03-22 21:19:27 +03:00
# build hledger addons, ensuring no warnings
2017-03-22 17:18:29 +03:00
- sh -e bin/compile.sh
2017-03-22 21:19:27 +03:00
2017-03-21 12:46:01 +03:00
# run functional tests
2017-03-22 13:02:56 +03:00
- make functest
2017-03-22 21:19:27 +03:00
after_script :
# list directory contents
- pwd
2017-03-23 01:36:09 +03:00
- ls -laF /
- ls -laF /home
- ls -laF $HOME
- ls -laF $HOME/build
- ls -laF $HOME/build/simonmichael
- ls -laF
2015-07-29 01:34:11 +03:00
2017-03-22 21:19:27 +03:00
# coveralls.io coverage reports
2017-03-23 01:36:09 +03:00
# - stack install hpc-coveralls
2017-03-22 21:19:27 +03:00
# - hpc-coveralls count-von-count-tests --exclude-dir=tests --exclude-dir=src/Gyrid --display-report
2015-07-29 01:34:11 +03:00
2015-07-29 02:34:20 +03:00
notifications :
2015-07-29 01:34:11 +03:00
irc :
channels :
- "chat.freenode.net#hledger"
on_success: change # [always|never|change] default : always
on_failure: change # default : always
use_notice : true
2015-07-29 02:48:19 +03:00
skip_join : true
2015-07-29 02:34:20 +03:00
# If you enable skip_join, remember to remove the NO_EXTERNAL_MSGS flag (n) on the IRC channel(s) the bot notifies.
template :
- "%{commit}: %{message} %{build_url}"
# - "%{repository_name} (%{commit}) : %{message} %{build_url}"
2015-07-29 01:34:11 +03:00
# You can interpolate the following variables:
# repository_slug: your GitHub repo identifier (like svenfuchs/minimal)
# repository_name: the slug without the username
# repository: same as repository_slug [Deprecated]
# build_number: build number
# build_id: build id
# branch: branch build name
# commit: shortened commit SHA
# author: commit author name
# commit_message: commit message of build
# commit_subject: first line of the commit message
# result: result of build
# message: travis message to the build
# duration: duration of the build
# compare_url: commit change view URL
# build_url: URL of the build detail
# The default template is:
2015-07-29 02:34:20 +03:00
# - "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message}"
# - "Change view : %{compare_url}"
# - "Build details : %{build_url}"
2015-07-29 01:34:11 +03:00
2015-07-29 02:34:20 +03:00
# email: # false
# recipients:
# - one@example.com
# - other@example.com
# on_success: [always|never|change] # default: change
# on_failure: [always|never|change] # default: always