Update production launch checklist with build failure note and re-ver…#393
Open
BigJohn-dev wants to merge 1 commit into
Conversation
…ification reminder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #381
Pull Request Documentation
Purpose: centralize pull-request guidance, checklist, and best practices for contributors and maintainers.
Use this document to prepare PRs, ensure consistent review standards, and speed up merging.
feature/*branch targetingmainor the active development branch.fix/*orhotfix/*.docs/*orchore/*.feat:,fix:,docs:,chore:) followed by a short description.Closes #NNNor related issue links.main(or the target branch).cargo build --workspacecompletes with no errors.cargo test --workspacepasses (or targeted tests pass for large suites).cargo clippy --all-targets --all-featuresand fix critical lints where applicable.unwrap()/expect()in new production code.Build workspace:
cd dongle-smartcontract cargo build --workspaceRun all tests (may be slow):
Run a focused test:
Run WASM release build for deployment validation:
cd dongle-smartcontract cargo build --target wasm32-unknown-unknown --release.github/pull_request_template.md(used by GitHub UI or copy/paste).CREATE_PR_INSTRUCTIONS.mdandSLUG_PR_SUMMARY.mdfor demonstration of a well-written PR.deployments.jsonand tag the commit for any release deployments that include contract changes.originand target branch exists.README.mdor theOWNERSfile if present.This document is a living reference. If you want additions or stricter checks (e.g., mandatory WASM size gate), open a PR against this file.
Pull Request Documentation
Purpose: centralize pull-request guidance, checklist, and best practices for contributors and maintainers.
Use this document to prepare PRs, ensure consistent review standards, and speed up merging.
feature/*branch targetingmainor the active development branch.fix/*orhotfix/*.docs/*orchore/*.feat:,fix:,docs:,chore:) followed by a short description.Closes #NNNor related issue links.main(or the target branch).cargo build --workspacecompletes with no errors.cargo test --workspacepasses (or targeted tests pass for large suites).cargo clippy --all-targets --all-featuresand fix critical lints where applicable.unwrap()/expect()in new production code.Build workspace:
cd dongle-smartcontract cargo build --workspaceRun all tests (may be slow):
Run a focused test:
Run WASM release build for deployment validation:
cd dongle-smartcontract cargo build --target wasm32-unknown-unknown --release.github/pull_request_template.md(used by GitHub UI or copy/paste).CREATE_PR_INSTRUCTIONS.mdandSLUG_PR_SUMMARY.mdfor demonstration of a well-written PR.deployments.jsonand tag the commit for any release deployments that include contract changes.originand target branch exists.README.mdor theOWNERSfile if present.This document is a living reference. If you want additions or stricter checks (e.g., mandatory WASM size gate), open a PR against this file.