appveyor.yml: use -j1, in hopes that this will help with a GHC bug.

The bug: https://ghc.haskell.org/trac/ghc/ticket/13194
See https://ci.appveyor.com/api/buildjobs/02l7v73n5hjs2t5u/log
for its occurrence in previous appveyor builds of pandoc.
This commit is contained in:
John MacFarlane 2017-02-12 22:34:07 +01:00
parent cc75635bc9
commit ad2f80f91d

View file

@ -30,8 +30,8 @@ test_script:
# The ugly echo "" hack is to avoid complaints about 0 being an invalid file # The ugly echo "" hack is to avoid complaints about 0 being an invalid file
# descriptor # descriptor
- echo "" | stack clean - echo "" | stack clean
- echo "" | stack --no-terminal test - echo "" | stack -j1 --no-terminal test
- echo "" | stack --local-bin-path . install pandoc pandoc-citeproc - echo "" | stack -j1 --local-bin-path . install pandoc pandoc-citeproc
after_test: after_test:
# .\ in the stack commandline seems to be .\windows\ (where the stack-appveyor.yaml is) # .\ in the stack commandline seems to be .\windows\ (where the stack-appveyor.yaml is)