Skip to content

Commit ae0160f

Browse files
authored
Reduce Windows VM memory allocation to 3GB/core
Now that JuliaLang/julia#47803 has been merged, we are using [significantly less commit charge](JuliaLang/julia#47803 (comment)), and should be capable of running with only 3GB/core allocated, rather than the currently rather wasteful 4GB/core.
1 parent 0e754c4 commit ae0160f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

windows-kvm/buildkite-worker/common.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ end
188188

189189
function template_kvm_config_command(agent_hostname::String;
190190
num_cpus::Int = 8,
191-
memory_kb::Int = num_cpus*4*1024*1024)
191+
memory_kb::Int = num_cpus*3*1024*1024)
192192
template = joinpath(@__DIR__, "kvm_machine.xml.template")
193193
target = agent_scratch_xml_path(agent_hostname)
194194

0 commit comments

Comments
 (0)