blob: 51c72dd4f15715c3787c9f629ef06029354208b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
{
inputs,
self,
...
}: {
imports = [
inputs.effects.flakeModule
];
hercules-ci.flake-update = {
enable = true;
autoMergeMethod = "rebase";
flakes = {
".".commitSummary = "flake: update inputs";
};
when = {
minute = 0;
hour = [0];
dayOfWeek = ["Sun"];
};
};
herculesCI = {lib, ...}: let
ciSystems = ["x86_64-linux" "aarch64-linux"];
findCompatible = lib.filterAttrs (s: _: builtins.elem s ciSystems);
in {
inherit ciSystems;
onPush.default.outputs = lib.mkForce {
packages = findCompatible self.packages;
};
};
}
|