-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
849dbf8
commit 64ba695
Showing
2 changed files
with
101 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,124 @@ | ||
# This file has been generated by `make_travis_yml_2.hs` | ||
# see https://github.com/hvr/multi-ghc-travis for more information | ||
# This Travis job script has been generated by a script via | ||
# | ||
# runghc make_travis_yml_2.hs 'snap-loader-dynamic.cabal' | ||
# | ||
# For more information, see https://github.com/haskell-CI/haskell-ci | ||
# | ||
language: c | ||
sudo: false | ||
|
||
git: | ||
submodules: false # whether to recursively clone submodules | ||
|
||
cache: | ||
directories: | ||
- $HOME/.cabal/packages | ||
- $HOME/.cabal/store | ||
|
||
before_cache: | ||
- rm -fv $HOME/.cabal/packages/hackage.haskell.org/build-reports.log | ||
- rm -fv $HOME/.cabal/packages/hackage.haskell.org/00-index.tar | ||
# 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: CABALVER=1.24 GHCVER=7.4.2 | ||
compiler: ": #GHC 7.4.2" | ||
addons: {apt: {packages: [cabal-install-1.24,ghc-7.4.2,pandoc], sources: [hvr-ghc]}} | ||
- env: CABALVER=1.24 GHCVER=7.6.3 | ||
compiler: ": #GHC 7.6.3" | ||
addons: {apt: {packages: [cabal-install-1.24,ghc-7.6.3,pandoc], sources: [hvr-ghc]}} | ||
- env: CABALVER=1.24 GHCVER=7.8.4 | ||
compiler: ": #GHC 7.8.4" | ||
addons: {apt: {packages: [cabal-install-1.24,ghc-7.8.4], sources: [hvr-ghc]}} | ||
- env: CABALVER=1.24 GHCVER=7.10.3 | ||
compiler: ": #GHC 7.10.3" | ||
addons: {apt: {packages: [cabal-install-1.24,ghc-7.10.3], sources: [hvr-ghc]}} | ||
- 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]}} | ||
- compiler: "ghc-8.6.3" | ||
# env: TEST=--disable-tests BENCH=--disable-benchmarks | ||
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-8.6.3], sources: [hvr-ghc]}} | ||
- 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]}} | ||
- 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]}} | ||
- 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]}} | ||
- 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]}} | ||
- compiler: "ghc-7.8.4" | ||
# env: TEST=--disable-tests BENCH=--disable-benchmarks | ||
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-7.8.4], sources: [hvr-ghc]}} | ||
- compiler: "ghc-7.6.3" | ||
# env: TEST=--disable-tests BENCH=--disable-benchmarks | ||
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-7.6.3], sources: [hvr-ghc]}} | ||
- compiler: "ghc-7.4.2" | ||
# env: TEST=--disable-tests BENCH=--disable-benchmarks | ||
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-2.4,ghc-7.4.2], sources: [hvr-ghc]}} | ||
|
||
before_install: | ||
- unset CC | ||
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH | ||
- 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 | ||
|
||
install: | ||
- cabal --version | ||
- BENCH=${BENCH---enable-benchmarks} | ||
- TEST=${TEST---enable-tests} | ||
- 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 | ||
- cabal new-build ${TEST} ${BENCH} --dep | ||
- cabal --version | ||
- echo "$(${HC} --version) [$(${HC} --print-project-git-commit-id 2> /dev/null || echo '?')]" | ||
- BENCH=${BENCH---enable-benchmarks} | ||
- TEST=${TEST---enable-tests} | ||
- HADDOCK=${HADDOCK-true} | ||
- UNCONSTRAINED=${UNCONSTRAINED-true} | ||
- NOINSTALLEDCONSTRAINTS=${NOINSTALLEDCONSTRAINTS-false} | ||
- GHCHEAD=${GHCHEAD-false} | ||
- travis_retry cabal update -v | ||
- "sed -i.bak 's/^jobs:/-- jobs:/' ${HOME}/.cabal/config" | ||
- rm -fv cabal.project cabal.project.local | ||
- grep -Ev -- '^\s*--' ${HOME}/.cabal/config | grep -Ev '^\s*$' | ||
- "printf 'packages: \".\"\\n' > cabal.project" | ||
- "printf 'write-ghc-environment-files: always\\n' >> cabal.project" | ||
- touch cabal.project.local | ||
- "if ! $NOINSTALLEDCONSTRAINTS; then for pkg in $($HCPKG list --simple-output); do echo $pkg | grep -vw -- snap-loader-dynamic | sed 's/^/constraints: /' | sed 's/-[^-]*$/ installed/' >> cabal.project.local; done; fi" | ||
- cat cabal.project || true | ||
- cat cabal.project.local || true | ||
- if [ -f "./configure.ac" ]; then | ||
(cd "." && autoreconf -i); | ||
fi | ||
- rm -f cabal.project.freeze | ||
- cabal new-build -w ${HC} ${TEST} ${BENCH} --project-file="cabal.project" --dep -j2 all | ||
- cabal new-build -w ${HC} --disable-tests --disable-benchmarks --project-file="cabal.project" --dep -j2 all | ||
- rm -rf .ghc.environment.* "."/dist | ||
- DISTDIR=$(mktemp -d /tmp/dist-test.XXXX) | ||
|
||
# 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: | ||
- if [ -f configure.ac ]; then autoreconf -i; fi | ||
# this builds all libraries and executables (including tests/benchmarks) | ||
- cabal new-build ${TEST} ${BENCH} -v2 # -v2 provides useful information for debugging | ||
# test that source-distributions can be generated | ||
- cabal new-sdist all | ||
- mv dist-newstyle/sdist/*.tar.gz ${DISTDIR}/ | ||
- cd ${DISTDIR} || false | ||
- find . -maxdepth 1 -name '*.tar.gz' -exec tar -xvf '{}' \; | ||
- "printf 'packages: snap-loader-dynamic-*/*.cabal\\n' > cabal.project" | ||
- "printf 'write-ghc-environment-files: always\\n' >> cabal.project" | ||
- touch cabal.project.local | ||
- "if ! $NOINSTALLEDCONSTRAINTS; then for pkg in $($HCPKG list --simple-output); do echo $pkg | grep -vw -- snap-loader-dynamic | sed 's/^/constraints: /' | sed 's/-[^-]*$/ installed/' >> cabal.project.local; done; fi" | ||
- cat cabal.project || true | ||
- cat cabal.project.local || true | ||
# this builds all libraries and executables (without tests/benchmarks) | ||
- cabal new-build -w ${HC} --disable-tests --disable-benchmarks all | ||
|
||
# build & run tests, build benchmarks | ||
- cabal new-build -w ${HC} ${TEST} ${BENCH} all | ||
|
||
# cabal check | ||
- (cd snap-loader-dynamic-* && cabal check) | ||
|
||
# there's no 'cabal new-test' yet, so let's emulate for now | ||
- TESTS=( $(awk 'tolower($0) ~ /^test-suite / { print $2 }' *.cabal) ); | ||
RC=true; for T in ${TESTS[@]}; do echo "== $T =="; | ||
if dist-newstyle/build/*/build/$T/$T; then echo "= $T OK ="; | ||
else echo "= $T FAILED ="; RC=false; fi; done; $RC | ||
- cabal sdist # test that a source-distribution can be generated | ||
# haddock | ||
- if $HADDOCK; then cabal new-haddock -w ${HC} ${TEST} ${BENCH} all; else echo "Skipping haddock generation";fi | ||
|
||
# Ignore build from sdist until snap-core-1.0.0.0 is on Hackage | ||
# # Check that the resulting source distribution can be built w/o and w tests | ||
# - SRC_BASENAME=$(cabal info . | awk '{print $2;exit}') | ||
# - tar -C dist/ -xf dist/$SRC_BASENAME.tar.gz | ||
# - "echo 'packages: *.cabal' > dist/$SRC_BASENAME/cabal.project" | ||
# - cd dist/$SRC_BASENAME/ | ||
# - cabal new-build --disable-tests --disable-benchmarks | ||
# - rm -rf ./dist-newstyle | ||
# - cabal new-build ${TEST} ${BENCH} | ||
# Build without installed constraints for packages in global-db | ||
- if $UNCONSTRAINED; then rm -f cabal.project.local; echo cabal new-build -w ${HC} --disable-tests --disable-benchmarks all; else echo "Not building without installed constraints"; fi | ||
|
||
# REGENDATA ["snap-loader-dynamic.cabal"] | ||
# EOF |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters