From ee693f638ce1e3a8005cbbf8f3956eeaa74bde7b Mon Sep 17 00:00:00 2001 From: rob thijssen Date: Sun, 26 Apr 2026 14:41:00 +0300 Subject: [PATCH] fix(ci): revert runner array syntax unsupported by Gitea Gitea 1.25 does not support array values in matrix includes for runs-on, causing the dispatch API to return 500. Revert to a single runner label. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/build-release.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitea/workflows/build-release.yml b/.gitea/workflows/build-release.yml index 2a7a3e1..6013962 100644 --- a/.gitea/workflows/build-release.yml +++ b/.gitea/workflows/build-release.yml @@ -20,9 +20,7 @@ jobs: include: - name: cuda13 fedora_version: "43" - runner: - - cuda-13.0 - - fedora-workstation-43 + runner: cuda-13.0 cuda_home: /usr/local/cuda-13.0 cargo_features: "cuda cudnn flash-attn nccl" compute_caps: "120"