ghc-mod/.travis.yml

67 lines
2.0 KiB
YAML
Raw Normal View History

2016-08-03 09:35:01 +00:00
language: c
sudo: false
cache:
apt: true
directories:
2016-08-03 09:35:01 +00:00
- $HOME/.stack
- $HOME/.ghc-mod
2016-08-03 09:35:01 +00:00
addons:
apt:
packages:
- libfcgi-dev
- libgmp-dev
before_install:
2016-08-03 09:35:01 +00:00
- unset CC
- 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'
- stack --version
install:
# - git clone --depth=1 https://github.com/DanielG/cabal-helper.git
2016-08-03 13:43:48 +00:00
- stack --no-terminal setup --resolver=ghc-$GHCVER
- stack --no-terminal install cabal-install --resolver=$RES
2016-08-03 14:23:37 +00:00
- travis_retry cabal update
2016-08-03 13:43:48 +00:00
- stack --no-terminal install happy --resolver=$RES
# - stack init --ignore-subdirs --resolver=ghc-$GHCVER ./ cabal-helper/
# - stack init --ignore-subdirs --resolver=ghc-$GHCVER ./
- |
resf="ghc-$GHCVER.yaml"
echo "resolver: ghc-$GHCVER" > "$resf"
2016-08-03 13:43:48 +00:00
stack --no-terminal solver --update-config --stack-yaml="$resf"
sed -i 's/^resolver:/compiler:/;s/^extra-deps:/packages:/' "$resf"
echo "resolver: { name: 'ghc-$GHCVER', location: './$resf' }" > stack.yaml
ir=$( stack path --snapshot-install-root )
ls -d ${ir%/custom-ghc-*}/custom-ghc-* | grep -v "${ir%/*}" | while read i; do
rm -rfv "$i"
done
script:
- cabal check
2016-08-03 13:43:48 +00:00
- stack --no-terminal build --test --no-run-tests
- stack --no-terminal test ghc-mod:spec
2016-08-03 15:57:35 +00:00
- |
if [ -r "$TRAVIS_BUILD_DIR/ChangeLog" ]; then
sdistdir="$TRAVIS_BUILD_DIR/../sdist-test"
mkdir -p "$sdistdir"
tar zvxf $(stack sdist 2>&1 | tail -n1 | sed 's/.* //') --strip-components=1 -C "$sdistdir"
cp "ghc-$GHCVER.yaml" stack.yaml "$sdistdir"
cd "$sdistdir"
stack --no-terminal build --test --no-run-tests
stack --no-terminal test ghc-mod:spec
fi
matrix:
2016-08-03 09:35:01 +00:00
matrix:
include:
- env: GHCVER=7.8.4 RES=lts-2.22
compiler: ': #GHC 7.8.4'
- env: GHCVER=7.10.3 RES=lts-6.9
compiler: ': #GHC 7.10.3'
- env: GHCVER=8.0.1 RES=nightly-2016-08-01
compiler: ': #GHC 8.0.1'