From 9ac9e2e91998c58d02b331240aae128a65d81f87 Mon Sep 17 00:00:00 2001 From: mattgodbolt-molty Date: Tue, 10 Mar 2026 08:54:51 -0500 Subject: [PATCH] Use small runner for install-compilers workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This workflow only downloads and installs pre-built binaries from S3, so it doesn't need a full 32 vCPU runner. 8 vCPU (small) is sufficient. 🤖 Generated by LLM (Claude, via OpenClaw) --- .github/workflows/install-compilers.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/install-compilers.yml b/.github/workflows/install-compilers.yml index e6c3bae..36db635 100644 --- a/.github/workflows/install-compilers.yml +++ b/.github/workflows/install-compilers.yml @@ -21,7 +21,7 @@ on: jobs: install: - runs-on: ['self-hosted', 'ce', 'linux', 'x64'] + runs-on: ['self-hosted', 'ce', 'linux', 'x64', 'small'] steps: - name: Start from a clean directory uses: AutoModality/action-clean@v1.1.0