diff options
author | John MacFarlane <jgm@berkeley.edu> | 2018-08-28 21:05:40 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2018-08-28 21:06:51 -0700 |
commit | 7c0b314cbeeaa1248007c40ac9f0d1b5cc4289da (patch) | |
tree | 7b1312be125e25364f4a32da7062e08ccd9816d9 | |
parent | 7318bc91ce58bb6c39e556e334f278e590439c3f (diff) | |
download | pandoc-7c0b314cbeeaa1248007c40ac9f0d1b5cc4289da.tar.gz |
appveyor.yml: use -arch with candle.
This may help with #4795.
-rw-r--r-- | appveyor.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index bc0dd69fa..8139d5403 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,10 +11,12 @@ environment: STACK_ROOT: "c:\\sr32" STACK: "%STACK_ROOT%\\stack.exe" STACK_FLAGS: "--flag=hslua:lua_32bits" + ARCH: "x86" - STACK_VERSION: "windows-x86_64" STACK_ROOT: "c:\\sr64" STACK: "%STACK_ROOT%\\stack.exe" STACK_FLAGS: "" + ARCH: "x64" skip_commits: files: @@ -69,7 +71,7 @@ after_test: set VERSION= for /f "tokens=1-2 delims= " %%a in ('.\pandoc.exe --version') do ( if not defined VERSION set "VERSION=%%b" ) echo %VERSION% - "%WIXBIN%\\candle" -dVERSION=%VERSION% -dBINPATH=. *.wxs -out wixobj\ + "%WIXBIN%\\candle" -arch %ARCH% -dVERSION=%VERSION% -dBINPATH=. *.wxs -out wixobj\ "%WIXBIN%\\light" -sw1076 -ext WixUIExtension -ext WixUtilExtension -cultures:en-us -loc Pandoc-en-us.wxl -out "pandoc-%STACK_VERSION%.msi" wixobj\*.wixobj artifacts: |