Skip to content

Commit

Permalink
Fix malloc issues on windows agent (#190)
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Zhu <[email protected]>

Signed-off-by: Peter Zhu <[email protected]>
  • Loading branch information
peterzhuamazon authored Aug 24, 2022
1 parent 76d3735 commit 6b1866b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/compute/agent-nodes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export class AgentNodes {
maxTotalUses: 10,
minimumNumberOfSpareInstances: 2,
numExecutors: 1,
amiId: 'ami-00b281139e1429343',
amiId: 'ami-0be4c33e264a17641',
initScript: 'echo',
remoteFs: 'C:\\Users\\Administrator\\jenkins',
};
Expand Down
2 changes: 1 addition & 1 deletion packer/scripts/windows/scoop-install-commons.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ git config --system core.packedGitWindowSize 128m
git config --system pack.deltaCacheSize 128m
git config --system pack.packSizeLimit 128m
git config --system pack.windowMemory 128m
git config --system http.postBuffer 524288000
#git config --system http.postBuffer 524288000 # Comment it out for now as it is calling malloc issues
git config --system --list

# Setup Repos (This has to happen after git is installed or will error out)
Expand Down

0 comments on commit 6b1866b

Please sign in to comment.