1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-01 04:02:34 +00:00

vagrant: increase VMCPUS and xdistn from 4 to 16

esp. the darwin64 box based tests take ages, let's see
if they get faster with this.
This commit is contained in:
Thomas Waldmann 2022-06-05 19:56:29 +02:00
parent 96c748c1d2
commit d8102774b6

4
Vagrantfile vendored
View file

@ -3,8 +3,8 @@
# Automated creation of testing environments / binaries on misc. platforms
$cpus = Integer(ENV.fetch('VMCPUS', '4')) # create VMs with that many cpus
$xdistn = Integer(ENV.fetch('XDISTN', '4')) # dispatch tests to that many pytest workers
$cpus = Integer(ENV.fetch('VMCPUS', '16')) # create VMs with that many cpus
$xdistn = Integer(ENV.fetch('XDISTN', '16')) # dispatch tests to that many pytest workers
$wmem = $xdistn * 256 # give the VM additional memory for workers [MB]
def packages_debianoid(user)