mirror of
https://github.com/khibino/haskell-relational-record.git
synced 2024-11-29 06:37:03 +03:00
88 lines
3.5 KiB
YAML
88 lines
3.5 KiB
YAML
# This file has been generated -- see https://github.com/hvr/multi-ghc-travis
|
|
language: c
|
|
sudo: false
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cabsnap
|
|
- $HOME/.cabal/packages
|
|
|
|
before_cache:
|
|
- rm -fv $HOME/.cabal/packages/hackage.haskell.org/build-reports.log
|
|
- rm -fv $HOME/.cabal/packages/hackage.haskell.org/00-index.tar
|
|
|
|
matrix:
|
|
include:
|
|
- env: CABALVER=1.24 GHCVER=8.0.1
|
|
compiler: ": #GHC 8.0.1"
|
|
addons: {apt: {packages: [cabal-install-1.24,ghc-8.0.1], sources: [hvr-ghc]}}
|
|
- env: DEBIANVER=wheezy CABALVER=1.16 GHCVER=7.4.1
|
|
compiler: ": Debian wheezy"
|
|
addons: {apt: {packages: [cabal-install-1.16,ghc-7.4.1], sources: [hvr-ghc]}}
|
|
- env: CABALVER=1.16 GHCVER=7.4.2
|
|
compiler: ": #GHC 7.4.2"
|
|
addons: {apt: {packages: [cabal-install-1.16,ghc-7.4.2], sources: [hvr-ghc]}}
|
|
- env: CABALVER=1.22 GHCVER=7.10.3
|
|
compiler: ": #GHC 7.10.3"
|
|
addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.3], sources: [hvr-ghc]}}
|
|
- env: CABALVER=1.18 GHCVER=7.8.4
|
|
compiler: ": #GHC 7.8.4"
|
|
addons: {apt: {packages: [cabal-install-1.18,ghc-7.8.4], sources: [hvr-ghc]}}
|
|
- env: CABALVER=1.16 GHCVER=7.6.3
|
|
compiler: ": #GHC 7.6.3"
|
|
addons: {apt: {packages: [cabal-install-1.16,ghc-7.6.3], sources: [hvr-ghc]}}
|
|
- env: CABALVER=1.16 GHCVER=7.4.1
|
|
compiler: ": #GHC 7.4.1"
|
|
addons: {apt: {packages: [cabal-install-1.16,ghc-7.4.1], sources: [hvr-ghc]}}
|
|
- env: CABALVER=1.16 GHCVER=7.6.1
|
|
compiler: ": #GHC 7.6.1"
|
|
addons: {apt: {packages: [cabal-install-1.16,ghc-7.6.1], sources: [hvr-ghc]}}
|
|
- env: CABALVER=1.16 GHCVER=7.6.2
|
|
compiler: ": #GHC 7.6.2"
|
|
addons: {apt: {packages: [cabal-install-1.16,ghc-7.6.2], sources: [hvr-ghc]}}
|
|
- env: CABALVER=1.18 GHCVER=7.8.1
|
|
compiler: ": #GHC 7.8.1"
|
|
addons: {apt: {packages: [cabal-install-1.18,ghc-7.8.1], sources: [hvr-ghc]}}
|
|
- env: CABALVER=1.18 GHCVER=7.8.2
|
|
compiler: ": #GHC 7.8.2"
|
|
addons: {apt: {packages: [cabal-install-1.18,ghc-7.8.2], sources: [hvr-ghc]}}
|
|
- env: CABALVER=1.18 GHCVER=7.8.3
|
|
compiler: ": #GHC 7.8.3"
|
|
addons: {apt: {packages: [cabal-install-1.18,ghc-7.8.3], sources: [hvr-ghc]}}
|
|
- env: CABALVER=1.22 GHCVER=7.10.1
|
|
compiler: ": #GHC 7.10.1"
|
|
addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.1], sources: [hvr-ghc]}}
|
|
- env: CABALVER=1.22 GHCVER=7.10.2
|
|
compiler: ": #GHC 7.10.2"
|
|
addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.2], sources: [hvr-ghc]}}
|
|
|
|
before_install:
|
|
- unset CC
|
|
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH
|
|
- case "$DEBIANVER" in
|
|
wheezy)
|
|
export CABAL_CONSTRAINTS='--constraint=transformers==0.3.0.0 --constraint=containers==0.4.2.1 --constraint=bytestring==0.9.2.1 --constraint=text==0.11.2.0 --constraint=time==1.4 --constraint=dlist==0.5 --constraint=convertible==1.0.11.1 --constraint=HDBC==2.3.1.1' ;
|
|
;;
|
|
*)
|
|
;;
|
|
esac
|
|
|
|
install:
|
|
- cabal --version
|
|
- echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]"
|
|
- if [ -f $HOME/.cabal/packages/hackage.haskell.org/00-index.tar.gz ];
|
|
then
|
|
zcat $HOME/.cabal/packages/hackage.haskell.org/00-index.tar.gz >
|
|
$HOME/.cabal/packages/hackage.haskell.org/00-index.tar;
|
|
fi
|
|
- travis_retry cabal update -v
|
|
- sed -i 's/^jobs:/-- jobs:/' ${HOME}/.cabal/config
|
|
- ./travis-CI/multi-ghc/install.sh
|
|
|
|
# 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:
|
|
- ./travis-CI/multi-ghc/script.sh
|
|
|
|
# EOF
|