fix(release): invoke frozen Telegram CLI directly (#112874)

This commit is contained in:
Dallin Romney
2026-07-23 13:08:33 +09:00
committed by GitHub
parent c2578bddfd
commit a195d6fcee
2 changed files with 12 additions and 3 deletions
@@ -2222,6 +2222,13 @@ jobs:
} >"${output_dir}/source-attestation.txt"
echo "output_dir=$output_dir" >>"$GITHUB_OUTPUT"
# The frozen archive is mounted read-only for the isolated SUT. Invoke
# its built CLI directly so pnpm cannot attempt an implicit install.
run_candidate_telegram_qa() (
cd "$CANDIDATE_ROOT"
exec node ./dist/index.js qa telegram "$@"
)
run_qa_attempt() (
set -euo pipefail
exec 2>&1
@@ -2232,7 +2239,7 @@ jobs:
trap 'printf "::%s::\n" "$workflow_command_token"' EXIT
set +e
TMPDIR="${SUT_RUNTIME_ROOT}/tmp" \
pnpm --dir "$CANDIDATE_ROOT" openclaw qa telegram \
run_candidate_telegram_qa \
--repo-root "$CANDIDATE_ROOT" \
--output-dir "${EVIDENCE_RELATIVE}/${output_name}" \
--provider-mode mock-openai \
@@ -2260,7 +2267,7 @@ jobs:
fi
done < <(
TMPDIR="${SUT_RUNTIME_ROOT}/tmp" \
pnpm --dir "$CANDIDATE_ROOT" openclaw qa telegram \
run_candidate_telegram_qa \
--repo-root "$CANDIDATE_ROOT" \
--provider-mode mock-openai \
--list-scenarios
@@ -578,7 +578,9 @@ describe("release Telegram QA workflow", () => {
expect(runStep?.run).toContain("! grep -Fq '\"openai/gpt-5.6-luna\": {'");
expect(runStep?.run).toContain('qa_model="mock-openai/gpt-5.5"');
expect(runStep?.run).toContain('--model "$qa_model"');
expect(runStep?.run).toContain('pnpm --dir "$CANDIDATE_ROOT" openclaw qa telegram');
expect(runStep?.run).toContain("run_candidate_telegram_qa() (");
expect(runStep?.run).toContain("exec node ./dist/index.js qa telegram");
expect(runStep?.run).not.toContain('pnpm --dir "$CANDIDATE_ROOT" openclaw qa telegram');
expect(runStep?.run).toContain(
"Telegram channel canary failed; skipping the remaining scenarios.",
);