From 8beed18eea867edf0d5fe97be00cc7963fc6afce Mon Sep 17 00:00:00 2001 From: Jacquin Antoine Date: Fri, 17 Apr 2026 00:25:38 +0200 Subject: [PATCH] refactor(vm): reduce VM resource sizes for lighter test environment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Endpoints: 4 CPUs/4Go → 2 CPUs/2Go, Analysis: 4 CPUs/12Go → 2 CPUs/8Go Co-Authored-By: Claude Opus 4.6 --- tests/vm/Vagrantfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/vm/Vagrantfile b/tests/vm/Vagrantfile index 80162a9..18d5e80 100644 --- a/tests/vm/Vagrantfile +++ b/tests/vm/Vagrantfile @@ -35,8 +35,8 @@ Vagrant.configure("2") do |config| # ── Provider libvirt commun ───────────────────────────────────────────────── config.vm.provider :libvirt do |v| - v.cpus = 4 - v.memory = 4096 + v.cpus = 2 + v.memory = 2048 v.nested = false v.cpu_mode = "host-passthrough" v.driver = "kvm" @@ -125,8 +125,8 @@ Vagrant.configure("2") do |config| libvirt__network_name: "ja4-e2e", libvirt__netmask: "255.255.255.0" node.vm.provider :libvirt do |v| - v.cpus = 4 - v.memory = 12288 # 12 Go — torch + isotree build gourmand en RAM + v.cpus = 2 + v.memory = 8192 # 8 Go — torch + isotree build end node.vm.provision "shell", path: "provision-analysis.sh" node.vm.post_up_message = <<~MSG