From 04fc4c664e7b23ea3f79a011d1e898c6195b7eb2 Mon Sep 17 00:00:00 2001 From: andy-neuma Date: Wed, 15 Oct 2025 17:07:52 -0400 Subject: [PATCH] add compressed tensors Signed-off-by: andy-neuma --- github/runner-groups/group-neural-magic/group.tf | 3 ++- github/runner-groups/group-neural-magic/repo-ids.tf | 4 ++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/github/runner-groups/group-neural-magic/group.tf b/github/runner-groups/group-neural-magic/group.tf index e2bf2090..75181e5d 100644 --- a/github/runner-groups/group-neural-magic/group.tf +++ b/github/runner-groups/group-neural-magic/group.tf @@ -7,9 +7,10 @@ resource "github_actions_runner_group" "neural_magic_runners" { visibility = "selected" selected_repository_ids = [ + var.compressed_tensors_id, var.llm-compressor_id, var.speculators_id, - var.vllm_id + var.vllm_id, ] } diff --git a/github/runner-groups/group-neural-magic/repo-ids.tf b/github/runner-groups/group-neural-magic/repo-ids.tf index 40d47b89..ffd25f0c 100644 --- a/github/runner-groups/group-neural-magic/repo-ids.tf +++ b/github/runner-groups/group-neural-magic/repo-ids.tf @@ -13,3 +13,7 @@ variable "speculators_id" { variable "vllm_id" { default = 599547518 } + +variable "compressed_tensors_id" { + default = 781003631 +}