diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aec3e21c072..31d1b2f67fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -194,6 +194,11 @@ jobs: }).map((shard) => ({ check_name: shard.checkName, extensions_csv: shard.extensionIds.join(","), + runner: isCanonicalRepository && [0, 3, 4].includes(shard.index) + ? "blacksmith-8vcpu-ubuntu-2404" + : isCanonicalRepository + ? "blacksmith-4vcpu-ubuntu-2404" + : "ubuntu-24.04", shard_index: shard.index + 1, task: "extensions-batch", })) @@ -913,7 +918,7 @@ jobs: name: ${{ matrix.check_name }} needs: [preflight] if: needs.preflight.outputs.run_checks_fast == 'true' - runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-4vcpu-ubuntu-2404' || 'ubuntu-24.04' }} + runs-on: ${{ matrix.runner }} timeout-minutes: 60 strategy: fail-fast: false @@ -1036,7 +1041,7 @@ jobs: name: checks-node-compat-node22 needs: [preflight] if: needs.preflight.outputs.run_node == 'true' && github.event_name == 'push' - runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-4vcpu-ubuntu-2404' || 'ubuntu-24.04' }} + runs-on: ${{ github.repository == 'openclaw/openclaw' && 'blacksmith-8vcpu-ubuntu-2404' || 'ubuntu-24.04' }} timeout-minutes: 60 steps: - name: Checkout @@ -1375,7 +1380,7 @@ jobs: runner: blacksmith-4vcpu-ubuntu-2404 - check_name: check-lint task: lint - runner: blacksmith-4vcpu-ubuntu-2404 + runner: blacksmith-8vcpu-ubuntu-2404 - check_name: check-policy-guards task: policy-guards runner: ubuntu-24.04