diff options
author | Albert Krewinkel <albert@zeitkraut.de> | 2017-08-16 15:47:05 +0200 |
---|---|---|
committer | Albert Krewinkel <albert@zeitkraut.de> | 2017-08-16 15:47:05 +0200 |
commit | 7a40f4865fb635ff4e126697895da956300e7e35 (patch) | |
tree | b8dd9801378ed0ec86f4fbb18f96c11378535f1f | |
parent | 9b318355300ca43aadede728c179785f40326d5c (diff) | |
download | pandoc-7a40f4865fb635ff4e126697895da956300e7e35.tar.gz |
Ensure hslua is build for 32 bits on windows i386
This prevents some otherwise hard to find and hard miscalculations in
lua filters.
-rw-r--r-- | appveyor.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 2977b4656..e3d7ec782 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,13 +3,16 @@ environment: global: WIXBIN: "c:\\Program Files (x86)\\WiX Toolset v3.11\\bin" STACK_YAML: "c:\\pandoc\\stack.pkg.yaml" + STACK_BUILD_OPTS: "-j1 --no-terminal --test --local-bin-path=.\\windows" matrix: - STACK_VERSION: "windows-i386" STACK_ROOT: "c:\\sr32" STACK: "%STACK_ROOT%\\stack.exe" + STACK_FLAGS: "--flag=hslua:lua_32bits" # - STACK_VERSION: "windows-x86_64" # STACK_ROOT: "c:\\sr64" # STACK: "%STACK_ROOT%\\stack.exe" +# STACK_FLAGS: "" matrix: fast_finish: true @@ -44,7 +47,7 @@ test_script: %STACK% setup > nul %STACK% path echo "" | %STACK% clean - echo "" | %STACK% -j1 --no-terminal --test --local-bin-path=.\windows install pandoc pandoc-citeproc + echo "" | %STACK% %STACK_BUILD_OPTS% install pandoc pandoc-citeproc %STACK_FLAGS% after_test: # .\ in the stack commandline seems to be .\windows\ (where the stack-appveyor.yaml is) |