diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-11-18 21:11:46 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-11-18 21:11:46 -0800 |
commit | 0267c1f6f3b7548d40e237bd1fa39ca9382f1f2b (patch) | |
tree | f7c0df766b07c5afc8b2d9c0ec58355db05627a1 /.github/workflows | |
parent | 038f70c84acf15d1c797f7ff1c806f571c9d9c1f (diff) | |
download | pandoc-0267c1f6f3b7548d40e237bd1fa39ca9382f1f2b.tar.gz |
Use -j1 for rc builds.
Avoid running out of memory.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release-candidate.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release-candidate.yml b/.github/workflows/release-candidate.yml index dd550fa4f..9f790452c 100644 --- a/.github/workflows/release-candidate.yml +++ b/.github/workflows/release-candidate.yml @@ -32,11 +32,11 @@ jobs: - osarch: "windows-x86_64" arch: "x64" choco_opts: "" - stack_opts: "" + stack_opts: "-j1" - osarch: "windows-i386" arch: "x86" choco_opts: "--x86" - stack_opts: "--flag hslua:lua_32bits" + stack_opts: "-j1 --flag hslua:lua_32bits" steps: - uses: actions/checkout@v1 |