From 76727a97625bc2082a45dbd771257e28e686c74e Mon Sep 17 00:00:00 2001 From: Jakub Skokan Date: Sun, 2 Jul 2023 13:29:40 +0200 Subject: [PATCH] apus: reduce number of kept build generations All squashfs images will still be held on the build machines, so older apu generations will build pretty quickly. This should help us save some space though. --- cluster/cz.vpsfree/machines/brq/apu/module.nix | 4 ++-- cluster/cz.vpsfree/machines/prg/apu/module.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cluster/cz.vpsfree/machines/brq/apu/module.nix b/cluster/cz.vpsfree/machines/brq/apu/module.nix index 0a61395c..c3e4673c 100644 --- a/cluster/cz.vpsfree/machines/brq/apu/module.nix +++ b/cluster/cz.vpsfree/machines/brq/apu/module.nix @@ -32,8 +32,8 @@ }; buildGenerations = { - min = 10; - max = 20; + min = 5; + max = 10; maxAge = 180*24*60*60; }; diff --git a/cluster/cz.vpsfree/machines/prg/apu/module.nix b/cluster/cz.vpsfree/machines/prg/apu/module.nix index c43c339e..4c063044 100644 --- a/cluster/cz.vpsfree/machines/prg/apu/module.nix +++ b/cluster/cz.vpsfree/machines/prg/apu/module.nix @@ -36,8 +36,8 @@ }; buildGenerations = { - min = 10; - max = 20; + min = 5; + max = 10; maxAge = 180*24*60*60; };