Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,13 @@ jobs:
- name: Build c2pool-${{ matrix.coin }}
if: steps.presence.outputs.exists == '1'
shell: cmd
run: cmake --build build_ci --target c2pool-${{ matrix.coin }} --config Release -j %NUMBER_OF_PROCESSORS%
# VM217 has a fixed 2GB pagefile; a 16-way MSVC parallel build of the
# heavy btc+NMC (and dgb+DOGE) TU set drives commit charge past the
# 32GB+2GB wall. The failure surfaces as an orphaned MSBuild with NO
# C####/LNK diagnostic. Cap MSBuild /maxcpucount (cmake -j -> /maxcpucount
# on the VS generator) to bound concurrent cl.exe and keep committed
# memory under the wall. Conservative 8; tune up only if headroom allows.
run: cmake --build build_ci --target c2pool-${{ matrix.coin }} --config Release -j 8

- name: Smoke test (--help)
if: steps.presence.outputs.exists == '1'
Expand Down
Loading