diff options
author | John MacFarlane <jgm@berkeley.edu> | 2017-05-16 09:17:32 +0200 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2017-05-16 09:17:32 +0200 |
commit | affc800c47433f6e804c7838ffb85d50a413b55c (patch) | |
tree | 56be8db6c3f0fb66a58339e2bff194acd0256158 | |
parent | e01e2d0b9ba0d0d96c32f1f63ed41722305d5764 (diff) | |
download | pandoc-affc800c47433f6e804c7838ffb85d50a413b55c.tar.gz |
appveyor.yml: remove manual calls to editbin.
To really solve this memory limit, we need to build with
a 64-bit version of ghc.
-rw-r--r-- | appveyor.yml | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/appveyor.yml b/appveyor.yml index 01e26a014..39c6b657d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,7 +4,6 @@ environment: STACK_ROOT: "c:\\sr" STACK_YAML: "c:\\stack\\stack.pkg.yaml" WIXBIN: "c:\\Program Files (x86)\\WiX Toolset v3.10\\bin" - EDITBIN: "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\bin" cache: - "c:\\sr" # stack root, short paths == fewer problems @@ -34,10 +33,6 @@ test_script: after_test: # .\ in the stack commandline seems to be .\windows\ (where the stack-appveyor.yaml is) - cd windows - # allow use of > 2GB memory - # see https://jonathanchang.org/blog/fixing-pandoc-out-of-memory-errors-on-windows/ - - '"%EDITBIN%"\editbin /LARGEADDRESSAWARE "pandoc.exe"' - - '"%EDITBIN%"\editbin /LARGEADDRESSAWARE "pandoc-citeproc.exe"' - .\pandoc.exe -s --toc ..\MANUAL.txt -o MANUAL.html - .\pandoc.exe -s ..\COPYING.md -o COPYING.rtf - copy ..\COPYRIGHT COPYRIGHT.txt |