blob: 35a4b3583107cadf767b8995ffff2e4b9d9b74d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
install:
- 'git submodule update --init'
- 'choco install haskellplatform -version 2014.2.0.0 -y'
- 'SET PATH=%PATH%;"C:\Program Files\Haskell Platform\2014.2.0.0\bin";"C:\Program Files\Haskell Platform\2014.2.0.0\lib\extralibs\bin";"C:\Program Files\Haskell Platform\2014.2.0.0\mingw\bin"'
- cabal update
- cabal install --only-dependencies --enable-tests
build_script:
- 'cabal configure --enable-tests -v2'
- 'cabal build'
test_script:
- 'cabal test'
|