From 5b1d352fbb6d02455515f2546e627388b0d4c2aa Mon Sep 17 00:00:00 2001 From: Ash Date: Tue, 28 Apr 2026 19:44:26 +0000 Subject: [PATCH] feat(ci): target ci-build runner label Route check and build-and-cache jobs to ci-build runner tier for proper resource isolation from lightweight CI workloads. --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8a4bdc4..b19bd0f 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: check: - runs-on: ubuntu-latest + runs-on: [ubuntu-latest, ci-build] steps: - uses: actions/checkout@v6 @@ -20,7 +20,7 @@ jobs: NIX_CONFIG: "access-tokens = git.johnogle.info=${{ secrets.GITEA_ACCESS_TOKEN }}" build-and-cache: - runs-on: ubuntu-latest + runs-on: [ubuntu-latest, ci-build] needs: check if: github.event_name == 'push' && github.ref == 'refs/heads/main' steps: