mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 20:35:39 -06:00
fix(release): accept advisory runtime gaps (#115140)
This commit is contained in:
committed by
GitHub
parent
1d047ac4f1
commit
7cf14c12c8
@@ -119,10 +119,12 @@ function requireRuntimePairScenario(scenario, index) {
|
||||
}
|
||||
|
||||
if (scenario.status === "pass") {
|
||||
const hasTwoPassingCells = openclaw.status === "pass" && codex.status === "pass";
|
||||
const hasAdvisoryCodexGap =
|
||||
parity.drift === "structural" && openclaw.status === "pass" && isExplicitCodexGap(codex);
|
||||
if (
|
||||
parity.drift === "failure-mode" ||
|
||||
openclaw.status !== "pass" ||
|
||||
codex.status !== "pass" ||
|
||||
(!hasTwoPassingCells && !hasAdvisoryCodexGap) ||
|
||||
!isPassableCell(openclaw) ||
|
||||
!isPassableCell(codex)
|
||||
) {
|
||||
|
||||
Reference in New Issue
Block a user