Skip to content

Commit

Permalink
hydra: build CUDA packages for the CUDA team
Browse files Browse the repository at this point in the history
  • Loading branch information
zimbatm authored and zowoq committed Jul 3, 2024
1 parent 766a23a commit 2608479
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions terraform/hydra-projects.tf
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,55 @@ resource "hydra_project" "simple_nixos_mailserver" {
value = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver"
}
}

resource "hydra_project" "nixpkgs" {
name = "nixpkgs"
display_name = "nixpkgs"
description = "you know what this is"
homepage = "https://github.com/NixOS/nixpkgs"
owner = "admin"
enabled = true
visible = true
}

resource "hydra_jobset" "nixpkgs_cuda" {
project = hydra_project.nixpkgs.name
state = "enabled"
visible = true
name = "cuda"
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-unstable-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 = 3000
keep_evaluations = 1

email_notifications = false
email_override = ""
}

0 comments on commit 2608479

Please sign in to comment.