From 201147fa271341ca9b8268734db3b09f38f03252 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Sat, 20 Sep 2025 08:02:45 +1000 Subject: [PATCH] remove cuda --- docs/package-sets.md | 18 ------------------ terraform/hydra-nixpkgs.tf | 39 -------------------------------------- 2 files changed, 57 deletions(-) diff --git a/docs/package-sets.md b/docs/package-sets.md index e1354c584..b0756c800 100644 --- a/docs/package-sets.md +++ b/docs/package-sets.md @@ -1,21 +1,3 @@ -#### Nixpkgs CUDA and ROCm - -See the [CUDA section of the nixpkgs manual](https://nixos.org/manual/nixpkgs/unstable/#cuda) for more information. - -[CUDA and ROCm release set in nixpkgs](https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/release-cuda.nix) - -Built on `nixos-unstable-small` for `x86_64-linux`: - -- [https://hydra.nix-community.org/jobset/nixpkgs/cuda](https://hydra.nix-community.org/jobset/nixpkgs/cuda) - -Built on `nixos-unstable-small` for `x86_64-linux`: - -- [https://hydra.nix-community.org/jobset/nixpkgs/rocm](https://hydra.nix-community.org/jobset/nixpkgs/rocm) - -Built on `nixos-$RELEASE-small` for `x86_64-linux`: - -- [https://hydra.nix-community.org/jobset/nixpkgs/cuda-stable](https://hydra.nix-community.org/jobset/nixpkgs/cuda-stable) - #### Nixpkgs unfree redistributable [unfree redistributable release set in nixpkgs](https://github.com/NixOS/nixpkgs/blob/master/pkgs/top-level/release-unfree-redistributable.nix) diff --git a/terraform/hydra-nixpkgs.tf b/terraform/hydra-nixpkgs.tf index 1584dc393..d20f1e0f3 100644 --- a/terraform/hydra-nixpkgs.tf +++ b/terraform/hydra-nixpkgs.tf @@ -30,15 +30,6 @@ locals { supported_systems = ["x86_64-freebsd"] release_source = "https://github.com/nix-community/infra.git master" } - cuda = { - name = "cuda" - description = "nixos-unstable-small cuda" - nixpkgs_channel = "https://github.com/NixOS/nixpkgs.git nixos-unstable-small" - release_file = "pkgs/top-level/release-cuda.nix" - check_interval = 1800 - scheduling_shares = 6000 - supported_systems = ["x86_64-linux"] - } cuda_stable = { name = "cuda-stable" description = "nixos-25.05-small cuda" @@ -48,25 +39,6 @@ locals { scheduling_shares = 6000 supported_systems = ["x86_64-linux"] } - cuda_stable_previous = { - name = "cuda-stable-previous" - description = "nixos-24.11-small cuda" - nixpkgs_channel = "https://github.com/NixOS/nixpkgs.git nixos-24.11-small" - release_file = "pkgs/top-level/release-cuda.nix" - check_interval = 1800 - scheduling_shares = 6000 - supported_systems = ["x86_64-linux"] - } - rocm = { - name = "rocm" - description = "nixos-unstable-small rocm" - nixpkgs_channel = "https://github.com/NixOS/nixpkgs.git nixos-unstable-small" - release_file = "pkgs/top-level/release-cuda.nix" - check_interval = 1800 - scheduling_shares = 6000 - supported_systems = ["x86_64-linux"] - variant = "rocm" - } unfree_redist = { name = "unfree-redist" description = "nixos-unstable-small unfree+redistributable" @@ -151,17 +123,6 @@ resource "hydra_jobset" "nixpkgs_jobset" { } } - dynamic "input" { - for_each = lookup(each.value, "variant", null) != null ? [each.value.variant] : [] - - content { - name = "variant" - type = "string" - value = input.value - notify_committers = false - } - } - input { name = "officialRelease" type = "boolean"