Skip to content
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

[RFC] docs/dev-proc/standard-release-process.md: Update release process #944

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 14 additions & 11 deletions docs/dev-proc/standard-release-process.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,20 @@ should be maintained in that way.

## Process steps

1. Checkout new branch `<platform>_rel_vX.Y.Z` from recent commit on `dasharo` -
to understand versioning scheme please read [Versioning](versioning.md)
section
2. Merge current platform development branches to `<platform>_rel_vX.Y.Z`
3. (Optional) Create a release candidate by tagging `<platform>_vX.Y.Z-rcN`
4. Run platform regression test suite
5. Fix all required issues and repeat from point 3 until fixed - this doesn't
mean all tests pass, this mean that approved set passed
6. If results are accepted merge it to `dasharo` branch
7. Add tag, which should trigger CI and publish binaries. Tag should be
annotated and signed. For example:
1. Checkout new branch `<platform>_rel_vX.Y.Z-rcN` from recent commit on
`dasharo` - to understand versioning scheme please read
[Versioning](versioning.md) section
2. Merge current platform development/bugfix branches to
`<platform>_rel_vX.Y.Z-rcN`.
3. Merge `<platform>_rel_vX.Y.Z-rcN` branch it to `dasharo` branch
4. Change the CONFIG_LOCALVERSION in coreboot configs appropriately and create
a release candidate by tagging `<platform>_vX.Y.Z-rcN`
5. Run platform regression test suite.
6. If all required tests passed, go to 8.
7. Fix all required issues and repeat from point 1 until fixed.
8. Change the CONFIG_LOCALVERSION in coreboot configs appropriately and add a
tag, which should trigger CI and publish binaries. Tag should be annotated,
signed and placed on the `dasharo` branch. For example:

```bash
git tag -a -s -m "<platform>_vX.Y.Z" <platform>_vX.Y.Z
Expand Down
Loading