@@ -44,11 +44,6 @@ install:
44
44
fi
45
45
- travis_retry cabal update -v
46
46
- sed -i 's/^jobs:/-- jobs:/' ${HOME}/.cabal/config
47
- # # TODO: remove all but last line when tidal 0.9 is released
48
- - git clone --depth 1 --branch 0.9-dev https://github.com/tidalcycles/Tidal
49
- - pushd Tidal && git show-ref 0.9-dev && popd
50
- - cabal sandbox init
51
- - cabal sandbox add-source Tidal
52
47
- cabal install --only-dependencies
53
48
# Here starts the actual work to be performed for the package under test;
54
49
# any command which exits with a non-zero exit code causes the build to fail.
@@ -57,13 +52,12 @@ script:
57
52
- cabal configure --enable-tests --enable-benchmarks -v2 # -v2 provides useful information for debugging
58
53
- cabal build # this builds all libraries and executables (including tests/benchmarks)
59
54
- cabal test
60
- # # TODO: enable this again when tidal 0.9 is released
61
- # - cabal check
62
- # - cabal sdist # tests that a source-distribution can be generated
55
+ - cabal check
56
+ - cabal sdist # tests that a source-distribution can be generated
63
57
# Check that the resulting source distribution can be built & installed.
64
58
# If there are no other `.tar.gz` files in `dist`, this can be even simpler:
65
59
# `cabal install --force-reinstalls dist/*-*.tar.gz`
66
- # - SRC_TGZ=$(cabal info . | awk '{print $2;exit}').tar.gz &&
67
- # (cd dist && cabal install --force-reinstalls "$SRC_TGZ")
60
+ - SRC_TGZ=$(cabal info . | awk '{print $2;exit}').tar.gz &&
61
+ (cd dist && cabal install --force-reinstalls "$SRC_TGZ")
68
62
69
63
# EOF
0 commit comments