Merge pull request #5211 from RyanGlScott/T5164
[cabal.git] / appveyor.yml
blobb7fcaad6e78545a165ecb88382f78d331c4e1101
1 install:
2   # Using '-y' and 'refreshenv' as a workaround to:
3   # https://github.com/haskell/cabal/issues/3687
4   - choco install -y cabal
5   - choco install -y ghc --version 8.0.2
6   - refreshenv
7   # See http://help.appveyor.com/discussions/problems/6312-curl-command-not-found#comment_42195491
8   # NB: Do this after refreshenv, otherwise it will be clobbered!
9   - set PATH=%APPDATA%\cabal\bin;C:\Program Files\Git\mingw64\bin;%PATH%
10   - cabal --version
11   - cabal update
12   # Install parsec, text and mtl, also alex and happy
13   - echo "" | appveyor-retry cabal install parsec-3.1.11 text-1.2.2.2 mtl-2.2.1 alex-3.1.7 happy-1.19.5
15 build_script:
16   - cd Cabal
17   - ghc --make -threaded -i -i. Setup.hs -Wall -Werror -XRank2Types -XFlexibleContexts
19   # 'echo "" |' works around an AppVeyor issue:
20   # https://github.com/commercialhaskell/stack/issues/1097#issuecomment-145747849
21   - echo "" | ..\appveyor-retry cabal install --only-dependencies --enable-tests
23   - Setup configure --user --ghc-option=-Werror --enable-tests
24   - Setup build
25   - Setup test --show-details=streaming --test-option=--hide-successes
26   - Setup install
27   # hackage-repo-tool doesn't build on Windows:
28   # https://github.com/well-typed/hackage-security/issues/175
29   # - echo "" | cabal install hackage-repo-tool --allow-newer=Cabal,time --constraint="Cabal == 2.3.0.0"
30   - cd ..\cabal-testsuite
31   - ghc --make -threaded -i Setup.hs -package Cabal-2.3.0.0
32   - echo "" | ..\appveyor-retry cabal install --only-dependencies --enable-tests
33   - Setup configure --user --ghc-option=-Werror --enable-tests
34   - Setup build
35   # Must install the test suite, so that our GHCi invocation picks it up
36   - Setup install
37   # Copy the setup script into the spot cabal-tests expects it
38   - mkdir dist\setup
39   - cp Setup.exe dist\setup
40   - dist\build\cabal-tests\cabal-tests.exe -j3
41   # - Setup test --show-details=streaming --test-option=--hide-successes
42   - cd ..\cabal-install
43   - ghc --make -threaded -i -i. Setup.hs -Wall -Werror
44   - echo "" | ..\appveyor-retry cabal install --only-dependencies --enable-tests -flib
45   - cabal configure --user --ghc-option=-Werror --enable-tests -flib
46   - cabal build
47   # update package index again, this time for the cabal under test
48   - dist\build\cabal\cabal.exe --http-transport=powershell update -v
49   # run cabal-testsuite first as it has better logging
50   - cd ..\cabal-testsuite
51   - dist\build\cabal-tests\cabal-tests.exe -j3 --skip-setup-tests --with-cabal=..\cabal-install\dist\build\cabal\cabal.exe
52   - cd ..\cabal-install
53   - cabal test unit-tests --show-details=streaming --test-option="--pattern=! /FileMonitor/" --test-option=--hide-successes
54   - cabal test integration-tests2 --show-details=streaming --test-option=--hide-successes
55   - cabal test solver-quickcheck --show-details=streaming --test-option=--hide-successes --test-option=--quickcheck-tests=1000
56   - cabal test memory-usage-tests --show-details=streaming