From 9f489eecc230b5275645ccc189f100dc63319a57 Mon Sep 17 00:00:00 2001 From: jiriks74 Date: Fri, 10 Jan 2025 06:34:26 +0100 Subject: [PATCH] feat(ci/cd): Set up Hydra --- .hydra/jobsets.nix | 13 +++++++++++++ .hydra/spec.json | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 .hydra/jobsets.nix create mode 100644 .hydra/spec.json diff --git a/.hydra/jobsets.nix b/.hydra/jobsets.nix new file mode 100644 index 0000000..8470702 --- /dev/null +++ b/.hydra/jobsets.nix @@ -0,0 +1,13 @@ +# +# jobset example file. This file can be referenced as Nix expression +# in a jobset configuration along with inputs for nixpkgs and the +# repository containing this file. +# +{ ... }: +let + # is set to the value designated by the nixpkgs input of the + # jobset configuration. + pkgs = (import {}); +in { + hello = pkgs.hello; +} diff --git a/.hydra/spec.json b/.hydra/spec.json new file mode 100644 index 0000000..2ef2f3b --- /dev/null +++ b/.hydra/spec.json @@ -0,0 +1,46 @@ +{ + "zsh.nix": { + "enabled": 1, + "hidden": false, + "description": "ZSH flake", + "nixexprinput": "src", + "nixexprpath": ".hydra/jobsets.nix", + "checkinterval": 300, + "schedulingshares": 100, + "enableemail": false, + "enable_dynamic_run_command": false, + "emailoverride": "", + "keepnr": 3, + "inputs": { + "src": { + "type": "git", + "value": "git://forgejo.stefka.eu/jiriks74/zsh.nix.git main", + "emailresponsible": false + }, + "nixpkgs": { "type": "git", + "value": "git://github.com/NixOS/nixpkgs.git release-16.03", + "emailresponsible": false + }, + "gitea_repo_name": { + "type": "string", + "value": "zsh.nix", + "emailresponsible": false + }, + "gitea_repo_owner": { + "type": "string", + "value": "jiriks74", + "emailresponsible": false + }, + "gitea_status_repo": { + "type": "string", + "value": "main", + "emailresponsible": false + }, + "gitea_http_url": { + "type": "string", + "value": "https://forgejo.stefka.eu/", + "emailresponsible": false + } + } + } +}