summaryrefslogtreecommitdiff
path: root/hci.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-09-06 17:03:55 -0400
committerseth <[email protected]>2023-09-07 13:13:55 -0400
commitec42da1b1bdf9d6fd7b05b66b4bc217c1b804147 (patch)
treec2dd856e3c78f41ad097108527779cd3fd9f1090 /hci.nix
parent43a54b71cd98f5e59a6a7d703b1fb00271ac6639 (diff)
ci: move back to garnix
Diffstat (limited to 'hci.nix')
-rw-r--r--hci.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/hci.nix b/hci.nix
deleted file mode 100644
index a9688cd..0000000
--- a/hci.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- 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;
- };
- };
-}