summaryrefslogtreecommitdiff
path: root/ci.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-08-19 21:18:43 -0400
committerseth <[email protected]>2023-08-19 22:35:45 -0400
commit3b59ee9c86ebbdadd81dd8f5940e19fdb9348d9a (patch)
tree85c5792d199d489942cc3a3c90ebd3340105729d /ci.nix
parentd0e95ba2c00f6a87087823338543b4c9cba3f10b (diff)
docs: update readme
Diffstat (limited to 'ci.nix')
-rw-r--r--ci.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/ci.nix b/ci.nix
deleted file mode 100644
index 51c72dd..0000000
--- a/ci.nix
+++ /dev/null
@@ -1,35 +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 = {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;
- };
- };
-}