Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

terraform/hydra-nixpkgs: cuda-stable: 24.05 -> 24.11 #1525

Merged
merged 3 commits into from
Nov 18, 2024
Merged
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
15 changes: 12 additions & 3 deletions terraform/hydra-nixpkgs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ locals {
jobset = {
cuda = {
name = "cuda"
description = "Testing CUDA support. Come help the CUDA team! https://nixos.org/community/teams/cuda/"
Copy link
Contributor Author

@zowoq zowoq Nov 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#1575

I'll add a page to our docs for cuda and have a link to the cuda team there.

description = "nixos-unstable-small cuda"
nixpkgs_channel = "https://github.com/NixOS/nixpkgs.git nixos-unstable-small"
nixpkgs_release_file = "pkgs/top-level/release-cuda.nix"
check_interval = 1800
Expand All @@ -11,7 +11,16 @@ locals {
}
cuda_stable = {
name = "cuda-stable"
description = "Testing CUDA support. Come help the CUDA team! https://nixos.org/community/teams/cuda/"
description = "nixos-24.11-small cuda"
nixpkgs_channel = "https://github.com/NixOS/nixpkgs.git nixos-24.11-small"
nixpkgs_release_file = "pkgs/top-level/release-cuda.nix"
check_interval = 1800
scheduling_shares = 6000
supported_systems = "[ \"x86_64-linux\" ]"
}
cuda_stable_previous = {
name = "cuda-stable-previous"
description = "nixos-24.05-small cuda"
nixpkgs_channel = "https://github.com/NixOS/nixpkgs.git nixos-24.05-small"
nixpkgs_release_file = "pkgs/top-level/release-cuda.nix"
check_interval = 1800
Expand All @@ -20,7 +29,7 @@ locals {
}
rocm = {
name = "rocm"
description = "Testing ROCm support."
description = "nixos-unstable-small rocm"
nixpkgs_channel = "https://github.com/NixOS/nixpkgs.git nixos-unstable-small"
nixpkgs_release_file = "pkgs/top-level/release-cuda.nix"
check_interval = 1800
Expand Down