blob: a9688cda076b8ac5c6583f984acd35c5cec69598 (
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
36
37
38
|
{
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 = {
config,
lib,
...
}: let
findCompatible = lib.filterAttrs (s: _: builtins.elem s config.ciSystems);
in {
ciSystems = ["x86_64-linux" "aarch64-linux"];
onPush.default.outputs = lib.mkForce {
packages = findCompatible self.packages;
};
};
}
|