summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2017-02-12 22:34:07 +0100
committerJohn MacFarlane <jgm@berkeley.edu>2017-02-12 22:34:07 +0100
commitad2f80f91d7b5500f413e05c1b659a1e1575755b (patch)
tree1f36723ddb723550c230d3c2d06677036b3f23b6 /appveyor.yml
parentcc75635bc92a5ef7a76c00b6b02c3a3412326e46 (diff)
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.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml
index e8c71ceaf..37284be58 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -30,8 +30,8 @@ test_script:
# The ugly echo "" hack is to avoid complaints about 0 being an invalid file
# descriptor
- echo "" | stack clean
- - echo "" | stack --no-terminal test
- - echo "" | stack --local-bin-path . install pandoc pandoc-citeproc
+ - echo "" | stack -j1 --no-terminal test
+ - echo "" | stack -j1 --local-bin-path . install pandoc pandoc-citeproc
after_test:
# .\ in the stack commandline seems to be .\windows\ (where the stack-appveyor.yaml is)