Skip to content
This repository was archived by the owner on Mar 10, 2019. It is now read-only.

Commit 9a37717

Browse files
authored
update .travis.yml for tidal 0.9 from hackage
this will (hopefully) pass as soon as hackage contains tidal-0.9
1 parent a87546f commit 9a37717

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.travis.yml

+4-10
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ install:
4444
fi
4545
- travis_retry cabal update -v
4646
- 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
5247
- cabal install --only-dependencies
5348
# Here starts the actual work to be performed for the package under test;
5449
# any command which exits with a non-zero exit code causes the build to fail.
@@ -57,13 +52,12 @@ script:
5752
- cabal configure --enable-tests --enable-benchmarks -v2 # -v2 provides useful information for debugging
5853
- cabal build # this builds all libraries and executables (including tests/benchmarks)
5954
- 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
6357
# Check that the resulting source distribution can be built & installed.
6458
# If there are no other `.tar.gz` files in `dist`, this can be even simpler:
6559
# `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")
6862

6963
# EOF

0 commit comments

Comments
 (0)