From 021eee0c5c927ec2d860faeb3468009bf292f4fd Mon Sep 17 00:00:00 2001 From: Ramon Roche Date: Mon, 9 Feb 2026 11:27:13 -0800 Subject: [PATCH] CI: use 16-core runs-on runner for clang-tidy workflow The free GitHub runner (4 vCPUs) takes ~22 minutes. Switch to a 16-core runs-on runner and bump parallelism to -j16 to reduce clang-tidy analysis time. Signed-off-by: Ramon Roche --- .github/workflows/clang-tidy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clang-tidy.yml b/.github/workflows/clang-tidy.yml index 38763d3097..09d9f0729b 100644 --- a/.github/workflows/clang-tidy.yml +++ b/.github/workflows/clang-tidy.yml @@ -14,7 +14,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: [runs-on, runner=16cpu-linux-x64, "run-id=${{ github.run_id }}"] steps: - uses: actions/checkout@v4 with: @@ -28,4 +28,4 @@ jobs: options: -v ${{ github.workspace }}:/workspace run: | cd /workspace - make clang-tidy + make -j16 clang-tidy