Skip to content

Commit 78aabed

Browse files
committed
terraform/hydra-projects: add cuda legacy
1 parent 1a497fe commit 78aabed

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

terraform/hydra-projects.tf

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,3 +123,30 @@ resource "hydra_jobset" "nixbsd" {
123123

124124
email_notifications = false
125125
}
126+
127+
resource "hydra_project" "cuda_legacy" {
128+
name = "cuda_legacy"
129+
display_name = "cuda-legacy"
130+
description = "CUDA package sets which have aged out of Nixpkgs"
131+
homepage = "https://github.com/nix-community/cuda-legacy"
132+
owner = "admin"
133+
enabled = true
134+
visible = true
135+
}
136+
137+
resource "hydra_jobset" "cuda_legacy" {
138+
project = hydra_project.cuda_legacy.name
139+
state = "enabled"
140+
visible = true
141+
name = "master"
142+
type = "flake"
143+
description = "master branch"
144+
145+
flake_uri = "github:nix-community/cuda-legacy"
146+
147+
check_interval = 1800
148+
scheduling_shares = 3000
149+
keep_evaluations = 1
150+
151+
email_notifications = false
152+
}

0 commit comments

Comments
 (0)