惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
MyScale Blog
MyScale Blog
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
U
Unit 42
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
C
Check Point Blog
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
Vercel News
Vercel News
腾讯CDC
GbyAI
GbyAI
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 三生石上(FineUI控件)
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security Blog
小众软件
小众软件

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
ci: run QA smoke profile in CI (#94291) · openclaw/opencl...
Solvely-Coli · 2026-06-25 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -251,7 +251,6 @@ jobs:

251251

],

252252

};

253253

});

254-
255254

const createMatrix = (include) => ({ include });

256255

const outputPath = process.env.GITHUB_OUTPUT;

257256

const isCanonicalRepository = process.env.OPENCLAW_CI_REPOSITORY === "openclaw/openclaw";

@@ -285,6 +284,7 @@ jobs:

285284

if (runNodeFull) {

286285

checksFastCoreTasks.push(

287286

{ check_name: "checks-fast-bundled-protocol", runtime: "node", task: "bundled-protocol" },

287+

{ check_name: "QA Smoke CI", runtime: "node", task: "qa-smoke-ci" },

288288

{ check_name: "checks-fast-bun-launcher", runtime: "bun", task: "bun-launcher" },

289289

);

290290

} else {

@@ -922,6 +922,26 @@ jobs:

922922

pnpm test:bundled

923923

pnpm protocol:check

924924

;;

925+

qa-smoke-ci)

926+

output_dir=".artifacts/qa-e2e/smoke-ci-profile"

927+

export OPENCLAW_BUILD_PRIVATE_QA=1

928+

export OPENCLAW_ENABLE_PRIVATE_QA_CLI=1

929+

export OPENCLAW_DISABLE_BUNDLED_PLUGINS=0

930+

export OPENCLAW_QA_REDACT_PUBLIC_METADATA=1

931+

export OPENCLAW_QA_TRANSPORT_READY_TIMEOUT_MS=180000

932+

NODE_OPTIONS=--max-old-space-size=8192 node scripts/build-all.mjs qaRuntime

933+

qa_exit_code=0

934+

pnpm openclaw qa run \

935+

--repo-root . \

936+

--qa-profile smoke-ci \

937+

--concurrency 8 \

938+

--output-dir "$output_dir" || qa_exit_code=$?

939+

echo "QA smoke profile evidence: \`${output_dir}\`" >> "$GITHUB_STEP_SUMMARY"

940+

if [ "$qa_exit_code" -ne 0 ]; then

941+

echo "::error title=QA smoke profile failed::smoke-ci exited ${qa_exit_code}; evidence upload will still run"

942+

exit "$qa_exit_code"

943+

fi

944+

;;

925945

contracts-plugins-ci-routing)

926946

pnpm test:contracts:plugins

927947

pnpm test src/commands/status.scan-result.test.ts src/scripts/ci-changed-scope.test.ts test/scripts/changed-lanes.test.ts test/scripts/ci-workflow-guards.test.ts test/scripts/run-vitest.test.ts test/scripts/test-projects.test.ts

@@ -938,6 +958,15 @@ jobs:

938958

;;

939959

esac

940960
961+

- name: Upload QA smoke profile evidence

962+

if: always() && matrix.task == 'qa-smoke-ci'

963+

uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7

964+

with:

965+

name: qa-smoke-profile-${{ github.run_id }}-${{ github.run_attempt }}

966+

path: .artifacts/qa-e2e/smoke-ci-profile/

967+

if-no-files-found: warn

968+

retention-days: 7

969+
941970

checks-fast-plugin-contracts-shard:

942971

permissions:

943972

contents: read

Original file line numberDiff line numberDiff line change

@@ -30,7 +30,7 @@ or an explicit manual dispatch.

3030

| `security-fast` | Private key detection, changed-workflow audit via `zizmor`, and production lockfile audit | Always on non-draft pushes and PRs |

3131

| `check-dependencies` | Production Knip dependency-only pass plus the unused-file allowlist guard | Node-relevant changes |

3232

| `build-artifacts` | Build `dist/`, Control UI, built-CLI smoke checks, embedded built-artifact checks, and reusable artifacts | Node-relevant changes |

33-

| `checks-fast-core` | Fast Linux correctness lanes such as bundled, protocol, and CI-routing checks | Node-relevant changes |

33+

| `checks-fast-core` | Fast Linux correctness lanes such as bundled, protocol, QA Smoke CI, and CI-routing checks | Node-relevant changes |

3434

| `checks-fast-contracts-plugins-*` | Two sharded plugin contract checks | Node-relevant changes |

3535

| `checks-fast-contracts-channels-*` | Two sharded channel contract checks | Node-relevant changes |

3636

| `checks-node-core-*` | Core Node test shards, excluding channel, bundled, contract, and extension lanes | Node-relevant changes |

Original file line numberDiff line numberDiff line change

@@ -795,13 +795,55 @@ describe("ci workflow guards", () => {

795795
796796

it("keeps workflow guards in fast CI-routing checks", () => {

797797

const workflow = readCiWorkflow();

798+

const preflightStep = workflow.jobs.preflight.steps.find(

799+

(step) => step.name === "Build CI manifest",

800+

);

801+

const taxonomy = parse(readFileSync("taxonomy.yaml", "utf8")) as {

802+

profiles: Array<{ id: string; categoryIds: string[] }>;

803+

};

804+

const smokeProfile = taxonomy.profiles.find((profile) => profile.id === "smoke-ci");

805+

if (!smokeProfile) {

806+

throw new Error("taxonomy.yaml is missing the smoke-ci profile");

807+

}

798808

const fastCoreJob = workflow.jobs["checks-fast-core"];

799809

const runStep = fastCoreJob.steps.find(

800810

(step) => step.name === "Run ${{ matrix.task }} (${{ matrix.runtime }})",

801811

);

812+

const uploadStep = fastCoreJob.steps.find(

813+

(step) => step.name === "Upload QA smoke profile evidence",

814+

);

815+
816+

const ciWorkflowText = readFileSync(".github/workflows/ci.yml", "utf8");

802817
818+

expect(preflightStep.run).not.toContain("qa-smoke-profile");

819+

expect(preflightStep.run).not.toContain("qa_category");

820+

expect(smokeProfile.categoryIds).toHaveLength(30);

821+

for (const categoryId of smokeProfile.categoryIds) {

822+

expect(ciWorkflowText).not.toContain(`"${categoryId}"`);

823+

}

824+

expect(runStep.run).toContain("bundled-protocol)");

825+

expect(runStep.run).toContain("qa-smoke-ci)");

803826

expect(runStep.run).toContain("contracts-plugins-ci-routing)");

804827

expect(runStep.run).toContain("ci-routing)");

828+

expect(ciWorkflowText).toContain(

829+

'{ check_name: "QA Smoke CI", runtime: "node", task: "qa-smoke-ci" }',

830+

);

831+

expect(runStep.run).toContain("--qa-profile smoke-ci");

832+

expect(runStep.run).toContain("--concurrency 8");

833+

expect(runStep.run).not.toContain("--category");

834+

expect(runStep.run).not.toContain("--allow-failures");

835+

expect(runStep.run).toContain("qa_exit_code=0");

836+

expect(runStep.run).toContain('exit "$qa_exit_code"');

837+

expect(runStep.run).toContain("scripts/build-all.mjs qaRuntime");

838+

expect(runStep.run).not.toContain("OPENAI_API_KEY");

839+

expect(runStep.run).toMatch(

840+

/bundled-protocol\)\s+pnpm test:bundled\s+pnpm protocol:check\s+;;\s+qa-smoke-ci\)/,

841+

);

842+

expect(uploadStep.if).toBe("always() && matrix.task == 'qa-smoke-ci'");

843+

expect(uploadStep.with).toMatchObject({

844+

path: ".artifacts/qa-e2e/smoke-ci-profile/",

845+

"if-no-files-found": "warn",

846+

});

805847

expect(runStep.run.match(/test\/scripts\/ci-workflow-guards\.test\.ts/g)?.length).toBe(2);

806848

});

807849