File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,15 @@ before_install:
14
14
- sudo apt-get install cabal-install-1.18 ghc-$GHCVER happy
15
15
- export PATH=/opt/ghc/$GHCVER/bin:$PATH
16
16
17
+ # Benchmarks aren't built as installing their dependencies causes a
18
+ # dependency cycle.
17
19
install :
18
20
- cabal-1.18 update
19
- - cabal-1.18 install --only-dependencies --enable-tests --enable-benchmarks
21
+ - cabal-1.18 install --only-dependencies --enable-tests
20
22
21
23
# 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.
22
24
script :
23
- - cabal-1.18 configure --enable-tests --enable-benchmarks - v2 # -v2 provides useful information for debugging
25
+ - cabal-1.18 configure --enable-tests -v2 # -v2 provides useful information for debugging
24
26
- cabal-1.18 build # this builds all libraries and executables (including tests/benchmarks)
25
27
- cabal-1.18 test
26
28
- cabal-1.18 check
You can’t perform that action at this time.
0 commit comments