Skip to content

Commit

Permalink
apus: reduce number of kept build generations
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
aither64 committed Jul 2, 2023
1 parent 0d8121d commit 76727a9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cluster/cz.vpsfree/machines/brq/apu/module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
};

buildGenerations = {
min = 10;
max = 20;
min = 5;
max = 10;
maxAge = 180*24*60*60;
};

Expand Down
4 changes: 2 additions & 2 deletions cluster/cz.vpsfree/machines/prg/apu/module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
};

buildGenerations = {
min = 10;
max = 20;
min = 5;
max = 10;
maxAge = 180*24*60*60;
};

Expand Down

0 comments on commit 76727a9

Please sign in to comment.