Merge standard-runner fallback into status aggregator stack

This commit is contained in:
Tianyi Cui
2026-07-27 14:37:04 +08:00
10 files changed
+62 -62

No files matched your search

+11 -11
View File
@@ -27,15 +27,15 @@ env:
jobs:
# Three enterprise jobs isolate coverage, static analysis, and the
# Three standard Linux jobs isolate coverage, static analysis, and the
# build-backed consumer tail. The static job publishes its exact build so
# consumers do not repeat the longest part of their critical path.
node-24:
if: github.event_name == 'pull_request'
runs-on: dsh-enterprise-ubuntu-latest-32core-test
runs-on: ubuntu-latest
name: node 24 / static
env:
DSH_GATE_CONCURRENCY: '8'
DSH_GATE_CONCURRENCY: '1'
steps:
# Fetch complete history so the archive gate can read the trusted PR base from a reused shallow checkout.
- uses: actions/checkout@v6
@@ -81,11 +81,11 @@ jobs:
node-24-coverage:
if: github.event_name == 'pull_request'
runs-on: dsh-enterprise-ubuntu-24-04-32core-test
runs-on: ubuntu-latest
name: node 24 / coverage
env:
DSH_COVERAGE_MAX_WORKERS: '24'
DSH_GATE_CONCURRENCY: '8'
DSH_COVERAGE_MAX_WORKERS: '1'
DSH_GATE_CONCURRENCY: '1'
steps:
- uses: actions/checkout@v6
with:
@@ -122,15 +122,15 @@ jobs:
node-24-consumers:
needs: node-24
if: github.event_name == 'pull_request'
runs-on: dsh-enterprise-ubuntu-latest-32core-test
runs-on: ubuntu-latest
name: node 24 / snapshots and artifacts
env:
DSH_ESLINT_CACHE: '1'
DSH_ESLINT_CONCURRENCY: '8'
DSH_GATE_CONCURRENCY: '8'
DSH_ESLINT_CONCURRENCY: '1'
DSH_GATE_CONCURRENCY: '1'
DSH_NODE_COMPAT_SKIP_TYPECHECK: '1'
DSH_PUBLINT_CONCURRENCY: '8'
DSH_SNAPSHOT_MAX_CONCURRENCY: '32'
DSH_PUBLINT_CONCURRENCY: '1'
DSH_SNAPSHOT_MAX_CONCURRENCY: '1'
steps:
- uses: actions/checkout@v6
with: