terraform/hydra-projects: add cuda-stable

CUDA is one of the more costly ecosystems for users to build, so
providing a cache for NixOS stable would be very much appreciated.
This commit is contained in:
Martin Weinelt 2024-09-03 22:54:46 +02:00 committed by zowoq
parent 48c90dee1a
commit b6d45e92e5

View file

@ -122,6 +122,48 @@ resource "hydra_jobset" "nixpkgs_cuda" {
email_override = ""
}
resource "hydra_jobset" "nixpkgs_cuda_stable" {
project = hydra_project.nixpkgs.name
state = "enabled"
visible = true
name = "cuda-stable"
type = "legacy"
description = "Testing CUDA support. Come help the CUDA team! https://nixos.org/community/teams/cuda/"
nix_expression {
file = "pkgs/top-level/release-cuda.nix"
input = "nixpkgs"
}
input {
name = "nixpkgs"
type = "git"
value = "https://github.com/NixOS/nixpkgs.git nixos-24.05-small"
notify_committers = false
}
input {
name = "officialRelease"
type = "boolean"
value = "false"
notify_committers = false
}
input {
name = "supportedSystems"
type = "nix"
value = "[ \"x86_64-linux\" ]"
notify_committers = false
}
check_interval = 1800
scheduling_shares = 6000
keep_evaluations = 1
email_notifications = false
email_override = ""
}
resource "hydra_jobset" "nixpkgs_rocm" {
project = hydra_project.nixpkgs.name
state = "enabled"