Compare commits

...

1 Commits

Author SHA1 Message Date
xiaoxia c7615fc9a4 perf(ci): 构建任务放宽Runner标签到saas,利用新CI服务器资源
CI/CD Pipeline / Frontend Lint (push) Successful in 38s
CI/CD Pipeline / Build Production API Image (push) Has been skipped
CI/CD Pipeline / Build Production Web Image (push) Has been skipped
CI/CD Pipeline / Build Production Worker Image (push) Has been skipped
CI/CD Pipeline / Deploy Production (push) Has been skipped
CI/CD Pipeline / Production Browser E2E (push) Has been skipped
CI/CD Pipeline / Unit Tests (push) Successful in 1m49s
CI/CD Pipeline / Validate Code Quality And Tests (push) Successful in 2m6s
CI/CD Pipeline / Build Staging API Image (push) Has been skipped
CI/CD Pipeline / Build Staging Web Image (push) Has been skipped
CI/CD Pipeline / Build Staging Worker Image (push) Has been skipped
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (push) Has been skipped
CI/CD Pipeline / Staging E2E Tests (push) Has been skipped
CI/CD Pipeline / Staging API Integration Tests (push) Has been skipped
CI/CD Pipeline / Frontend Lint (pull_request) Successful in 52s
CI/CD Pipeline / Build Production Web Image (pull_request) Has been skipped
CI/CD Pipeline / Build Production API Image (pull_request) Has been skipped
CI/CD Pipeline / Build Production Worker Image (pull_request) Has been skipped
CI/CD Pipeline / Deploy Production (pull_request) Has been skipped
CI/CD Pipeline / Production Browser E2E (pull_request) Has been skipped
CI/CD Pipeline / Validate Code Quality And Tests (pull_request) Successful in 1m38s
CI/CD Pipeline / Build Staging Web Image (pull_request) Has been skipped
CI/CD Pipeline / Build Staging Worker Image (pull_request) Has been skipped
CI/CD Pipeline / Build Staging API Image (pull_request) Has been skipped
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (pull_request) Has been skipped
CI/CD Pipeline / Staging E2E Tests (pull_request) Has been skipped
CI/CD Pipeline / Staging API Integration Tests (pull_request) Has been skipped
CI/CD Pipeline / Unit Tests (pull_request) Successful in 1m58s
CI/CD Pipeline / Integration Tests (push) Successful in 1m36s
CI/CD Pipeline / Integration Tests (pull_request) Successful in 1m34s
将build-staging和build-production的runs-on从 saas+build-farm
放宽为 saas,让新CI服务器的6个build-only Runner也能承接构建任务,
解决三镜像并行构建时的资源竞争问题。
2026-07-15 16:12:42 +08:00
+2 -6
View File
@@ -408,9 +408,7 @@ jobs:
'
build-staging:
name: Build Staging ${{ matrix.service_display }} Image
runs-on:
- saas
- build-farm
runs-on: saas
timeout-minutes: ${{ matrix.timeout }}
needs:
- validate
@@ -684,9 +682,7 @@ jobs:
'
build-production:
name: Build Production ${{ matrix.service_display }} Image
runs-on:
- saas
- build-farm
runs-on: saas
timeout-minutes: ${{ matrix.timeout }}
needs:
if: startsWith(github.ref, 'refs/tags/v')