Skip to content
Snippets Groups Projects
Commit 3e03f7bd authored by Herbert Valerio Riedel's avatar Herbert Valerio Riedel :man_dancing:
Browse files

Update Travis script

The previous script didn't run the testsuites yet
parent eb617e26
No related branches found
No related tags found
No related merge requests found
# This Travis job script has been generated by a script via # This Travis job script has been generated by a script via
# #
# make_travis_yml_2.hs 'hsc2hs.cabal' # runghc make_travis_yml_2.hs 'hsc2hs.cabal'
# #
# For more information, see https://github.com/hvr/multi-ghc-travis # For more information, see https://github.com/hvr/multi-ghc-travis
# #
...@@ -24,6 +24,8 @@ before_cache: ...@@ -24,6 +24,8 @@ before_cache:
- rm -fv $HOME/.cabal/packages/hackage.haskell.org/01-index.tar - rm -fv $HOME/.cabal/packages/hackage.haskell.org/01-index.tar
- rm -fv $HOME/.cabal/packages/hackage.haskell.org/01-index.tar.idx - rm -fv $HOME/.cabal/packages/hackage.haskell.org/01-index.tar.idx
- rm -rfv $HOME/.cabal/packages/head.hackage
matrix: matrix:
include: include:
- compiler: "ghc-7.0.4" - compiler: "ghc-7.0.4"
...@@ -54,54 +56,60 @@ matrix: ...@@ -54,54 +56,60 @@ matrix:
addons: {apt: {packages: [ghc-ppa-tools,cabal-install-head,ghc-8.2.1], sources: [hvr-ghc]}} addons: {apt: {packages: [ghc-ppa-tools,cabal-install-head,ghc-8.2.1], sources: [hvr-ghc]}}
before_install: before_install:
- HC=${CC} - HC=${CC}
- HCPKG=${HC/ghc/ghc-pkg} - HCPKG=${HC/ghc/ghc-pkg}
- unset CC - unset CC
- PATH=/opt/ghc/bin:/opt/ghc-ppa-tools/bin:$PATH - ROOTDIR=$(pwd)
- PKGNAME='hsc2hs' - 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: install:
- cabal --version - cabal --version
- echo "$(${HC} --version) [$(${HC} --print-project-git-commit-id 2> /dev/null || echo '?')]" - echo "$(${HC} --version) [$(${HC} --print-project-git-commit-id 2> /dev/null || echo '?')]"
- BENCH=${BENCH---enable-benchmarks} - BENCH=${BENCH---enable-benchmarks}
- TEST=${TEST---enable-tests} - TEST=${TEST---enable-tests}
- HADDOCK=${HADDOCK-true} - HADDOCK=${HADDOCK-true}
- INSTALLED=${INSTALLED-true} - INSTALLED=${INSTALLED-true}
- travis_retry cabal update -v - GHCHEAD=${GHCHEAD-false}
- sed -i.bak 's/^jobs:/-- jobs:/' ${HOME}/.cabal/config - travis_retry cabal update -v
- rm -fv cabal.project.local - "sed -i.bak 's/^jobs:/-- jobs:/' ${HOME}/.cabal/config"
- "echo 'packages: .' > cabal.project" - rm -fv cabal.project cabal.project.local
- rm -f cabal.project.freeze - grep -Ev -- '^\s*--' ${HOME}/.cabal/config | grep -Ev '^\s*$'
- cabal new-build -w ${HC} ${TEST} ${BENCH} --dep -j2 all - "printf 'packages: \".\"\\n' > cabal.project"
- cabal new-build -w ${HC} --disable-tests --disable-benchmarks --dep -j2 all - cat cabal.project
- 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; # 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. # any command which exits with a non-zero exit code causes the build to fail.
script: script:
- if [ -f configure.ac ]; then autoreconf -i; fi # test that source-distributions can be generated
- rm -rf .ghc.environment.* dist/ - (cd "." && cabal sdist)
- cabal sdist # test that a source-distribution can be generated - mv "."/dist/hsc2hs-*.tar.gz ${DISTDIR}/
- cd dist/ - cd ${DISTDIR} || false
- SRCTAR=(${PKGNAME}-*.tar.gz) - find . -maxdepth 1 -name '*.tar.gz' -exec tar -xvf '{}' \;
- SRC_BASENAME="${SRCTAR/%.tar.gz}" - "printf 'packages: hsc2hs-*/*.cabal\\n' > cabal.project"
- tar -xvf "./$SRC_BASENAME.tar.gz" - cat cabal.project
- cd "$SRC_BASENAME/" # this builds all libraries and executables (without tests/benchmarks)
## from here on, CWD is inside the extracted source-tarball - cabal new-build -w ${HC} --disable-tests --disable-benchmarks all
- rm -fv cabal.project.local
- "echo 'packages: .' > cabal.project" # Build with installed constraints for packages in global-db
# this builds all libraries and executables (without tests/benchmarks) - if $INSTALLED; then echo cabal new-build -w ${HC} --disable-tests --disable-benchmarks $(${HCPKG} list --global --simple-output --names-only | sed 's/\([a-zA-Z0-9-]\{1,\}\) */--constraint="\1 installed" /g') all | sh; else echo "Not building with installed constraints"; fi
- rm -f cabal.project.freeze
- cabal new-build -w ${HC} --disable-tests --disable-benchmarks all
# this builds all libraries and executables (including tests/benchmarks)
# - rm -rf ./dist-newstyle
# Build with installed constraints for packages in global-db # build & run tests, build benchmarks
- if $INSTALLED; then - cabal new-build -w ${HC} ${TEST} ${BENCH} all
echo cabal new-build -w ${HC} --disable-tests --disable-benchmarks $(${HCPKG} list --global --simple-output --names-only | sed 's/\([a-zA-Z0-9-]\{1,\}\) */--constraint="\1 installed" /g') all | sh; - if [ "x$TEST" = "x--enable-tests" ]; then cabal new-test -w ${HC} ${TEST} ${BENCH} all; fi
else echo "Not building with installed constraints"; fi
# build & run tests, build benchmarks # cabal check
- cabal new-build -w ${HC} ${TEST} ${BENCH} all - (cd hsc2hs-* && cabal check)
# REGENDATA ["hsc2hs.cabal"] # REGENDATA ["hsc2hs.cabal"]
# EOF # EOF
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