summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-04-26 12:01:57 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2015-04-26 12:01:57 -0700
commit3cd1d568adecea7c5b9c4384fdec06539018b06b (patch)
tree8d521a654fff96bb492dee14a1d218a03eda1306 /appveyor.yml
parent11395271608fab06c1301d7a7905c2f5c593234f (diff)
appveyor.yml - rearranged install and build scripts.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml14
1 files changed, 5 insertions, 9 deletions
diff --git a/appveyor.yml b/appveyor.yml
index f605089a1..35a4b3583 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,13 +1,9 @@
install:
-- cmd: git submodule update --init
-- ps: >-
- choco install haskellplatform -version 2014.2.0.0 -y
- # Haskell Platfrom package doesn't update PATH for the current shell instance
- $env:Path += ";${env:ProgramFiles}\Haskell Platform\2014.2.0.0\bin"
- $env:Path += ";${env:ProgramFiles}\Haskell Platform\2014.2.0.0\lib\extralibs\bin"
- $env:Path += ";${env:ProgramFiles}\Haskell Platform\2014.2.0.0\mingw\bin"
- cabal update
- cabal install --only-dependencies --enable-tests
+- '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'