Skip to content
Snippets Groups Projects
Commit 40b28559 authored by Mikhail Glushenkov's avatar Mikhail Glushenkov
Browse files

Merge pull request #2850 from 23Skidoo/travis-common-sandbox

Use a common sandbox for building Cabal and cabal-install.
parents 8129e5ac 04d1863a
No related branches found
No related tags found
No related merge requests found
# NB: don't set `language: haskell` here
# The following enables several GHC versions to be tested; often it's enough to test only against the last release in a major GHC version. Feel free to omit lines listings versions you don't need/want testing for.
# The following enables several GHC versions to be tested; often it's enough to
# test only against the last release in a major GHC version. Feel free to omit
# lines listings versions you don't need/want testing for.
env:
- GHCVER=7.4.2
- GHCVER=7.6.3
......@@ -17,32 +19,37 @@ before_install:
install:
- cabal update
# We intentionally do not install anything before trying to build Cabal because
# it should build with each supported GHC version out-of-the-box.
# We intentionally do not install anything before trying to build Cabal because
# it should build with each supported GHC version out-of-the-box.
# 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.
# Using ./dist/setup/setup here instead of cabal-install to avoid breakage
# when the build config format changed
# 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. Using
# ./dist/setup/setup here instead of cabal-install to avoid breakage when the
# build config format changed.
script:
- cabal sandbox init
- cd Cabal
- mkdir -p ./dist/setup
- cp Setup.hs ./dist/setup/setup.hs
# Should be able to build setup without extra dependencies
- /opt/ghc/$GHCVER/bin/ghc --make -odir ./dist/setup -hidir ./dist/setup -i -i. ./dist/setup/setup.hs -o ./dist/setup/setup -Wall -Werror -threaded # the command cabal-install would use to build setup
# Need extra dependencies for test suite
# Need extra dependencies for test suite. Installing them into the common
# sandbox speeds up the build a little.
- cabal sandbox init --sandbox ../.cabal-sandbox
- cabal install --only-dependencies --enable-tests
- sudo /opt/ghc/$GHCVER/bin/ghc-pkg recache
- /opt/ghc/$GHCVER/bin/ghc-pkg recache --user
- ./dist/setup/setup configure --user --enable-tests --enable-benchmarks --ghc-option=-Werror -v2 # -v2 provides useful information for debugging
- ./dist/setup/setup configure --user --enable-tests --enable-benchmarks --ghc-option=-Werror -v2 --package-db=clear --package-db=global --package-db=../.cabal-sandbox/$(uname -i)-linux-ghc-$GHCVER-packages.conf.d # -v2 provides useful information for debugging
- ./dist/setup/setup build # this builds all libraries and executables (including tests/benchmarks)
- ./dist/setup/setup haddock # see #2198
- ./dist/setup/setup test --show-details=streaming
- cabal check
- cabal sdist # tests that a source-distribution can be generated
# The following scriptlet checks that the resulting source distribution can be built & installed
# The following scriptlet checks that the resulting source distribution can be
# built & installed.
- function install_from_tarball {
export SRC_TGZ=$(cabal info . | awk '{print $2 ".tar.gz";exit}') ;
if [ -f "dist/$SRC_TGZ" ]; then
......@@ -52,12 +59,12 @@ script:
exit 1;
fi
}
- install_from_tarball
# Also build cabal-install.
- cd ../cabal-install
- cabal sandbox init
- cabal sandbox add-source ../Cabal
- cabal sandbox init --sandbox ../.cabal-sandbox
- cabal install --dependencies-only --enable-tests
- cabal configure --enable-tests --ghc-option=-Werror
- cabal build
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment