aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-09-24 23:38:42 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-09-24 23:38:42 -0700
commit828f51fd4aed030e43707a9cf6e145cef60e4f89 (patch)
treef116b0a84320265e0ae92b70e0170963753eab62
parent50294050b20a8139b87f34cb880f3c12ae720e4f (diff)
downloadpandoc-828f51fd4aed030e43707a9cf6e145cef60e4f89.tar.gz
Revert "appveyor - comment out 64-bit build for now, add semicolons."
This reverts commit 50294050b20a8139b87f34cb880f3c12ae720e4f.
-rw-r--r--appveyor.yml28
1 files changed, 14 insertions, 14 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 079b68d2c..83b8bb258 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -9,13 +9,13 @@ environment:
TMP: "c:\\tmp"
# see #4201, https://github.com/haskell-tools/haskell-tools/issues/277
matrix:
-# - BUILD_TYPE: "stack"
-# OSARCH: "windows-x86_64"
-# STACK_ROOT: "c:\\sr64"
-# STACK_YAML: "stack.yaml"
-# STACK_FLAGS: "--arch=x86_64"
-# ARCH: "x64"
-# CHOCO_OPTS: ""
+ - BUILD_TYPE: "stack"
+ OSARCH: "windows-x86_64"
+ STACK_ROOT: "c:\\sr64"
+ STACK_YAML: "stack.yaml"
+ STACK_FLAGS: "--arch=x86_64"
+ ARCH: "x64"
+ CHOCO_OPTS: ""
# - BUILD_TYPE: "stack"
# OSARCH: "windows-i386"
# STACK_ROOT: "c:\\sr32"
@@ -72,15 +72,15 @@ test_script:
# The ugly echo "" hack is to avoid complaints about 0 being an invalid file
# descriptor
- if "%BUILD_TYPE%" == "stack" (
- stack --version ;
- stack path ;
- echo "" | stack clean ;
+ stack --version
+ stack path
+ echo "" | stack clean
echo "" | stack install --stack-yaml %STACK_YAML% %STACK_BUILD_OPTS% %STACK_FLAGS% pandoc pandoc-citeproc
) else (
- cabal --version ;
- cabal update ;
- cabal new-build %CABAL_BUILD_OPTS% . pandoc-citeproc ;
- cp "`find dist-newstyle/ -type f -name pandoc`" .\windows\ ;
+ cabal --version
+ cabal update
+ cabal new-build %CABAL_BUILD_OPTS% . pandoc-citeproc
+ cp "`find dist-newstyle/ -type f -name pandoc`" .\windows\
cp "`find dist-newstyle/ -type f -name pandoc-citeproc`" .\windows\
)