summaryrefslogtreecommitdiff
path: root/nix/ci.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/ci.nix')
-rw-r--r--nix/ci.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/nix/ci.nix b/nix/ci.nix
deleted file mode 100644
index 682f46f..0000000
--- a/nix/ci.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- perSystem = {
- pkgs,
- lib,
- self',
- ...
- }: {
- /*
- require packages, checks, and devShells for ci to be considered a success
-
- also thanks DetSys for showing me i don't need to use runCommand, symlinkJoin, or linkFarm!
- https://determinate.systems/posts/hydra-deployment-source-of-truth
- */
-
- packages.ciGate = pkgs.writeText "ci-gate" (
- lib.concatMapStringsSep "\n" (s: toString (lib.attrValues s)) [
- self'.checks
- self'.devShells
- (builtins.removeAttrs self'.packages ["default" "ciGate"])
- ]
- );
- };
-}