Skip to content

Commit

Permalink
Reduce Windows VM memory allocation to 3GB/core
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
staticfloat authored Dec 5, 2022
1 parent 0e754c4 commit ae0160f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion windows-kvm/buildkite-worker/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ end

function template_kvm_config_command(agent_hostname::String;
num_cpus::Int = 8,
memory_kb::Int = num_cpus*4*1024*1024)
memory_kb::Int = num_cpus*3*1024*1024)
template = joinpath(@__DIR__, "kvm_machine.xml.template")
target = agent_scratch_xml_path(agent_hostname)

Expand Down

0 comments on commit ae0160f

Please sign in to comment.