From 537b3b978c333b3a2a1544b0b3e6ff739dfa6253 Mon Sep 17 00:00:00 2001 From: Yureka Date: Sun, 28 Jul 2024 23:39:57 +0200 Subject: [PATCH] remove yureka-staging-test jobset I have no idea how, but it seems I accidentally deleted this jobset --- terraform/hydra.nix | 40 ---------------------------------------- 1 file changed, 40 deletions(-) diff --git a/terraform/hydra.nix b/terraform/hydra.nix index 4a044d2..39e62bb 100644 --- a/terraform/hydra.nix +++ b/terraform/hydra.nix @@ -284,45 +284,5 @@ in } ]; }; - - resource.hydra_jobset.yureka-staging-test = { - project = config.resource.hydra_project.forkos.name; - state = "disabled"; - visible = false; - name = "yureka-staging-test"; - type = "legacy"; - description = "staging branch for yureka-nixos"; - - nix_expression = { - file = "pkgs/top-level/release.nix"; - input = "nixpkgs"; - }; - - check_interval = 0; - scheduling_shares = 3000; - keep_evaluations = 3; - - email_notifications = false; - - input = [ - { - name = "nixpkgs"; - type = "git"; - value = "https://cl.forkos.org/nixpkgs sandbox/yureka/staging-test"; - notify_committers = false; - } - { - name = "officialRelease"; - type = "boolean"; - value = "false"; - notify_committers = false; - } - { - name = "supportedSystems"; - type = "nix"; - value = ''[ "x86_64-linux" ]''; - } - ]; - }; }; }