ci: park timing summary collection (#96930) · openclaw/openclaw@899f650
RomneyDa
·
2026-06-26
·
via Recent Commits to openclaw:main
| Original file line number | Diff line number | Diff line change |
|---|
@@ -2419,7 +2419,8 @@ jobs:
|
2419 | 2419 | - macos-swift |
2420 | 2420 | - ios-build |
2421 | 2421 | - android |
2422 | | -if: ${{ !cancelled() && always() && github.event_name != 'push' && (github.event_name != 'pull_request' || !github.event.pull_request.draft) }} |
| 2422 | +# Re-enable this job when we want to collect CI timing data for timing optimization. |
| 2423 | +if: ${{ false && !cancelled() && always() && github.event_name != 'push' && (github.event_name != 'pull_request' || !github.event.pull_request.draft) }} |
2423 | 2424 | runs-on: ubuntu-24.04 |
2424 | 2425 | timeout-minutes: 5 |
2425 | 2426 | steps: |
|
| Original file line number | Diff line number | Diff line change |
|---|
@@ -573,7 +573,11 @@ describe("ci workflow guards", () => {
|
573 | 573 | expect(runStep.run).toContain("childEnv[key] = value"); |
574 | 574 | }); |
575 | 575 | |
576 | | -it("uploads a CI timing summary after the run lanes finish", () => { |
| 576 | +it("keeps the CI timing summary parked for timing optimization work", () => { |
| 577 | +expect(readFileSync(".github/workflows/ci.yml", "utf8")).toContain( |
| 578 | +"Re-enable this job when we want to collect CI timing data for timing optimization.", |
| 579 | +); |
| 580 | + |
577 | 581 | const workflow = readCiWorkflow(); |
578 | 582 | const timingJob = workflow.jobs["ci-timings-summary"]; |
579 | 583 | |
@@ -598,6 +602,7 @@ describe("ci workflow guards", () => {
|
598 | 602 | "ios-build", |
599 | 603 | "android", |
600 | 604 | ]); |
| 605 | +expect(timingJob.if).toContain("false"); |
601 | 606 | expect(timingJob.if).toContain("always()"); |
602 | 607 | expect(timingJob.if).toContain("!cancelled()"); |
603 | 608 | |
|
此内容由惯性聚合(RSS阅读器)自动聚合整理,仅供阅读参考。 原文来自 — 版权归原作者所有。