diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-04-09 16:38:05 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-04-09 16:38:15 -0700 |
commit | 1fd5ca48c11f312c26860b200b4181e89d2e1218 (patch) | |
tree | e6ebf3f5a2ec04e7657a56efe50d6778ecdfec11 | |
parent | f31f5924b3f31e62838216592f7e7d95d8c7b2a1 (diff) | |
download | pandoc-1fd5ca48c11f312c26860b200b4181e89d2e1218.tar.gz |
Travis: gave up trying to test the sdist.
For some reason hsb2hs was not found, even though it was built.
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml index 9bff8afd0..c6db9b804 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,6 @@ install: export PATH=$HOME/.cabal/bin:$PATH fi - git clone https://github.com/jgm/pandoc-types && cd pandoc-types && cabal-1.18 install && cd .. - - cabal-1.18 install hsb2hs - cabal-1.18 install --only-dependencies --enable-tests -v2 # 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. @@ -33,14 +32,3 @@ script: - cabal-1.18 test - cabal-1.18 check - cabal-1.18 sdist # tests that a source-distribution can be generated - -# The following scriptlet checks that the resulting source distribution can be built & installed - - export SRC_TGZ=$(cabal-1.18 info . | awk '{print $2 ".tar.gz";exit}') ; - cd dist/; - if [ -f "$SRC_TGZ" ]; then - cabal-1.18 install "$SRC_TGZ"; - else - echo "expected '$SRC_TGZ' not found"; - exit 1; - fi - |