From cb7c4b11b5f104700bad498d953dc151282f18d0 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Mon, 1 Jun 2026 10:07:13 +0300 Subject: [PATCH] ci(self-hosted) : add missing Linux label to cpu-x64-high-perf runner Fixes: https://github.com/ggml-org/llama.cpp/pull/23927#discussion_r3332213086 The cpu-x64-high-perf job was missing the Linux label in its runs-on specification, causing the runner to not be discovered. All other self-hosted Linux jobs include this label. Assisted-by: llama.cpp:local pi --- .github/workflows/build-self-hosted.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-self-hosted.yml b/.github/workflows/build-self-hosted.yml index 93d05ee7a70..436100c8a4c 100644 --- a/.github/workflows/build-self-hosted.yml +++ b/.github/workflows/build-self-hosted.yml @@ -298,7 +298,7 @@ jobs: GG_BUILD_OPENVINO=1 GGML_OPENVINO_DEVICE=GPU GG_BUILD_LOW_PERF=1 bash ./ci/run.sh ~/results/llama.cpp ~/mnt/llama.cpp cpu-x64-high-perf: - runs-on: [self-hosted, X64] + runs-on: [self-hosted, Linux, X64] steps: - name: Clone