-
Notifications
You must be signed in to change notification settings - Fork 0
Close V28 gate 13 promotion readiness #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -61,15 +61,29 @@ jobs: | |
| node scripts/check-bitcode-canon-posture-drift.mjs --active-canon V27 --draft-target V28 | ||
| node scripts/check-bitcode-canonical-inputs.mjs --current-target V27 | ||
| node scripts/check-v28-metadevelopment-readiness.mjs --promotion-mode --skip-branch-check | ||
| node scripts/check-v28-gate9-depository-evidence.mjs | ||
| node scripts/check-v28-gate10-read-need-comprehension.mjs | ||
| node scripts/check-v28-gate11-read-fits-finding-preview.mjs | ||
| node scripts/check-v28-gate12-settlement-rights-delivery.mjs | ||
| node scripts/check-v28-gate13-product-closure-promotion-readiness.mjs | ||
| node scripts/promote-bitcode-canon.mjs --version V28 --commit HEAD --dry-run | ||
| elif [ "$POINTER" = "V28" ]; then | ||
| node scripts/check-bitcode-spec-family.mjs --version V28 --mode promoted --current-target V28 | ||
| node scripts/check-bitcode-canonical-inputs.mjs --current-target V28 | ||
| node scripts/check-v28-metadevelopment-readiness.mjs --promotion-mode --skip-branch-check | ||
| node scripts/check-v28-gate9-depository-evidence.mjs | ||
| node scripts/check-v28-gate10-read-need-comprehension.mjs | ||
| node scripts/check-v28-gate11-read-fits-finding-preview.mjs | ||
| node scripts/check-v28-gate12-settlement-rights-delivery.mjs | ||
| node scripts/check-v28-gate13-product-closure-promotion-readiness.mjs | ||
| else | ||
| echo "Unexpected BITCODE_SPEC.txt pointer: $POINTER" >&2 | ||
| exit 1 | ||
| fi | ||
| pnpm test:qa:v28:pipeline-readback | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When Useful? React with 👍 / 👎. |
||
| pnpm --filter @bitcode/btd typecheck | ||
| pnpm --filter @bitcode/btd test | ||
| npm --prefix protocol-demonstration test | ||
| npm --prefix protocol-demonstration run test:v28-mvp-qa | ||
| pnpm --filter @bitcode/pipeline-asset-pack typecheck | ||
| pnpm --filter @bitcode/pipeline-hosts typecheck | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This step reruns
pnpm test:qa:v28:pipeline-readbackeven thoughValidate draft canon posturealready callspromote-bitcode-canon --dry-run, and the V28 dry-run plan now includes the same command (scripts/promote-bitcode-canon.mjs, V28 command plan). OnV27draft branches this duplicates a network-sensitive check in one workflow run, increasing CI time and flake exposure enough to block gate closures.Useful? React with 👍 / 👎.