Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions terraform/hydra-projects.tf
Original file line number Diff line number Diff line change
Expand Up @@ -123,3 +123,30 @@ resource "hydra_jobset" "nixbsd" {

email_notifications = false
}

resource "hydra_project" "cuda_legacy" {
name = "cuda-legacy"
display_name = "cuda-legacy"
description = "CUDA package sets which have aged out of Nixpkgs"
homepage = "https://github.com/nix-community/cuda-legacy"
owner = "admin"
enabled = true
visible = true
}

resource "hydra_jobset" "cuda_legacy" {
project = hydra_project.cuda_legacy.name
state = "enabled"
visible = true
name = "master"
type = "flake"
description = "master branch"

flake_uri = "github:nix-community/cuda-legacy"

check_interval = 1800
scheduling_shares = 3000
keep_evaluations = 1

email_notifications = false
}