mirror of
https://github.com/qfpl/applied-fp-course.git
synced 2024-11-22 11:23:01 +03:00
139 lines
5.0 KiB
YAML
139 lines
5.0 KiB
YAML
# This Travis job script has been generated by a script via
|
|
#
|
|
# runghc make_travis_yml_2.hs 'applied-fp-course.cabal'
|
|
#
|
|
# For more information, see https://github.com/hvr/multi-ghc-travis
|
|
#
|
|
language: c
|
|
sudo: false
|
|
|
|
git:
|
|
submodules: false # whether to recursively clone submodules
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cabal/packages
|
|
- $HOME/.cabal/store
|
|
- $HOME/.ghc
|
|
- $HOME/.stack
|
|
- $TRAVIS_BUILD_DIR/.stack-work
|
|
|
|
before_cache:
|
|
- rm -fv $HOME/.cabal/packages/hackage.haskell.org/build-reports.log
|
|
# remove files that are regenerated by 'cabal update'
|
|
- rm -fv $HOME/.cabal/packages/hackage.haskell.org/00-index.*
|
|
- rm -fv $HOME/.cabal/packages/hackage.haskell.org/*.json
|
|
- rm -fv $HOME/.cabal/packages/hackage.haskell.org/01-index.cache
|
|
- rm -fv $HOME/.cabal/packages/hackage.haskell.org/01-index.tar
|
|
- rm -fv $HOME/.cabal/packages/hackage.haskell.org/01-index.tar.idx
|
|
- rm -rfv $HOME/.cabal/packages/head.hackage
|
|
|
|
matrix:
|
|
include:
|
|
# - env: BUILD=cabal
|
|
# compiler: "ghc-7.10.3"
|
|
# env: TEST=--disable-tests BENCH=--disable-benchmarks
|
|
# addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-7.10.3], sources: [hvr-ghc]}}
|
|
|
|
- env: BUILD=cabal
|
|
compiler: "ghc-8.0.2"
|
|
# env: TEST=--disable-tests BENCH=--disable-benchmarks
|
|
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-8.0.2], sources: [hvr-ghc]}}
|
|
|
|
- env: BUILD=cabal
|
|
compiler: "ghc-8.2.2"
|
|
# env: TEST=--disable-tests BENCH=--disable-benchmarks
|
|
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-8.2.2], sources: [hvr-ghc]}}
|
|
|
|
- env: BUILD=cabal
|
|
compiler: "ghc-8.4.4"
|
|
# env: TEST=--disable-tests BENCH=--disable-benchmarks
|
|
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-8.4.4], sources: [hvr-ghc]}}
|
|
- env: BUILD=cabal
|
|
compiler: "ghc-8.6.4"
|
|
# env: TEST=--disable-tests BENCH=--disable-benchmarks
|
|
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-8.6.4], sources: [hvr-ghc]}}
|
|
|
|
# The Stack builds. We can pass in arbitrary Stack arguments via the ARGS
|
|
# variable, such as using --stack-yaml to point to a different file.
|
|
- env: BUILD=stack ARGS=""
|
|
compiler: ": #stack default"
|
|
addons: {apt: {packages: [libgmp-dev]}}
|
|
|
|
# Nightly builds are allowed to fail
|
|
- env: BUILD=stack ARGS="--resolver nightly"
|
|
compiler: ": #stack nightly"
|
|
addons: {apt: {packages: [libgmp-dev]}}
|
|
|
|
# Build on macOS in addition to Linux
|
|
- env: BUILD=stack ARGS=""
|
|
compiler: ": #stack default osx"
|
|
os: osx
|
|
|
|
- env: BUILD=stack ARGS="--resolver nightly"
|
|
compiler: ": #stack nightly osx"
|
|
os: osx
|
|
|
|
allow_failures:
|
|
- env: BUILD=stack ARGS="--resolver nightly"
|
|
|
|
before_install:
|
|
- HC=${CC}
|
|
- HCPKG=${HC/ghc/ghc-pkg}
|
|
- unset CC
|
|
- ROOTDIR=$(pwd)
|
|
- mkdir -p $HOME/.local/bin
|
|
- "PATH=/opt/ghc/bin:/opt/ghc-ppa-tools/bin:$HOME/local/bin:$PATH"
|
|
- HCNUMVER=$(( $(${HC} --numeric-version|sed -E 's/([0-9]+)\.([0-9]+)\.([0-9]+).*/\1 * 10000 + \2 * 100 + \3/') ))
|
|
- echo $HCNUMVER
|
|
# Download and unpack the stack executable
|
|
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$HOME/.local/bin:/opt/alex/$ALEXVER/bin:/opt/happy/$HAPPYVER/bin:$HOME/.cabal/bin:$PATH
|
|
- mkdir -p ~/.local/bin
|
|
- |
|
|
if [ `uname` = "Darwin" ]
|
|
then
|
|
travis_retry curl --insecure -L https://www.stackage.org/stack/osx-x86_64 | tar xz --strip-components=1 --include '*/stack' -C ~/.local/bin
|
|
else
|
|
travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
|
|
fi
|
|
|
|
install:
|
|
- echo "$(${HC} --version) [$(${HC} --print-project-git-commit-id 2> /dev/null || echo '?')]"
|
|
- BENCH=${BENCH---enable-benchmarks}
|
|
- TEST=${TEST---enable-tests}
|
|
- HADDOCK=${HADDOCK-true}
|
|
- INSTALLED=${INSTALLED-true}
|
|
- GHCHEAD=${GHCHEAD-false}
|
|
- DISTDIR=$(mktemp -d /tmp/dist-test.XXXX)
|
|
- |
|
|
case "$BUILD" in
|
|
stack)
|
|
cabal --version
|
|
ghc --version
|
|
# Add in extra-deps for older snapshots, as necessary
|
|
stack --no-terminal $ARGS --install-ghc build --bench --dry-run || ( \
|
|
stack --no-terminal $ARGS --install-ghc build cabal-install && \
|
|
stack --no-terminal $ARGS solver --update-config)
|
|
|
|
# Build the dependencies
|
|
stack --no-terminal $ARGS test --bench --only-dependencies
|
|
;;
|
|
cabal)
|
|
cabal --version
|
|
travis_retry cabal update -v
|
|
;;
|
|
esac
|
|
|
|
# Here starts the actual work to be performed for the package under test;
|
|
# any command which exits with a non-zero exit code causes the build to fail.
|
|
script:
|
|
# Build with stack
|
|
- if [[ "$BUILD" == "stack" ]]; then stack --no-terminal $ARGS build --no-run-benchmarks; fi
|
|
# Build with cabal, using individual commands so we can see which part failed.
|
|
- if [[ "$BUILD" == "cabal" ]]; then cabal new-configure -w ${HC} --enable-tests --ghc-options -O0; fi
|
|
- if [[ "$BUILD" == "cabal" ]]; then cabal new-build -w ${HC} all; fi
|
|
- if [[ "$BUILD" == "cabal" ]]; then rm -rf ./dist-newstyle; fi
|
|
|
|
# REGENDATA ["applied-fp-course.cabal"]
|
|
# EOF
|