mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-01-05 22:20:12 -05:00
makebuildserver.config.py is no more, builder/Vagrantfile is now where the CPU and memory is configured for the buildserver VM. In fact, that was always the actual place, the makebuildserver.config.py thing was just confused. This should have been part of !1222
13 lines
359 B
Ruby
13 lines
359 B
Ruby
# generated file, do not change.
|
|
# https://gitlab.com/fdroid/fdroid-bootstrap-buildserver/-/blob/c0762bf9398d0/provision.yml#L552
|
|
|
|
Vagrant.configure("2") do |config|
|
|
config.vm.box = "buildserver"
|
|
config.vm.synced_folder ".", "/vagrant", disabled: true
|
|
|
|
config.vm.provider :libvirt do |libvirt|
|
|
libvirt.cpus = 24
|
|
libvirt.memory = 30720
|
|
end
|
|
end
|