aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-09-24 23:31:25 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-09-24 23:31:25 -0700
commit50294050b20a8139b87f34cb880f3c12ae720e4f (patch)
tree05bfa30161472a9719ecfea64225faec84a12540 /appveyor.yml
parent59ec31b9427013178506efe13caac4c075e9dd4b (diff)
downloadpandoc-50294050b20a8139b87f34cb880f3c12ae720e4f.tar.gz
appveyor - comment out 64-bit build for now, add semicolons.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml28
1 files changed, 14 insertions, 14 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 83b8bb258..079b68d2c 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\
)