-
Notifications
You must be signed in to change notification settings - Fork 99
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] operational notes: tracking yearly goals #265
Open
japaric
wants to merge
1
commit into
master
Choose a base branch
from
ops-tracking
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
# Tracking progress of yearly goals | ||
|
||
At the beginning of the year the WG decides on the goals that it plans to | ||
achieve by the end of the year. This document describes how the progress of | ||
those goals is tracked in the rust-embedded/* issue trackers. | ||
|
||
- One tracking issue per goal. All these issues will be under the `$YEAR` | ||
milestone. | ||
|
||
- All tracking issues have at least one team associated to it (\*). This will be | ||
reflected using a label, e.g. `T-cortex-m`. (\*) With the exception of the | ||
meta issue used to track upstream (rust-lang/*) bug fixes, stabilization | ||
issues, etc. | ||
|
||
- All issues will have at least one WG member assigned to it (using GH | ||
"assignees" feature). | ||
|
||
- No member shall be assigned to more than three tracking issues at any point in | ||
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. across all rust-embedded project? That is going to be hard to track. |
||
time. | ||
|
||
- The assignee(s) will report updates on the tracking issues as comments. In | ||
particular, they'll post a summary report each week, before the weekly | ||
meeting. No summary report is needed for "not started" issues. | ||
|
||
- The summary reports will start with a status label indicating whether the goal | ||
is "on track", "blocked" or in the "help wanted" state. The summary will | ||
include the updates since the last summary report and the next steps for the | ||
issue (e.g. write an RFC, or wait for FCP to end). Example: | ||
|
||
``` markdown | ||
Status: on track | ||
|
||
Updates: An RFC was submitted. | ||
|
||
Next steps: wait for T-libs approval. | ||
``` | ||
|
||
- If the status of the issue hasn't changed since last week the assignee can | ||
skip the summary report of that week but they must write a summary report the | ||
next week. | ||
|
||
- Summary reports will be linked from the issue description (i.e. from the top | ||
of the thread) in reverse chronological order using the following format: | ||
`W$N: $STATUS`, where `$N` is the week number and `$STATUS` is the status | ||
label. Example: | ||
|
||
``` markdown | ||
Title: ARM intrinsics | ||
|
||
### Status reports | ||
|
||
- [W13: blocked](..) | ||
- [W11: on track](..) | ||
- W6-W10: not started | ||
|
||
--- | ||
|
||
### Description | ||
|
||
This tracking issue is about stabilizing ARM Cortex-M / Cortex-R / Cortex-A | ||
intrinsics (e.g. `wfi`) in the `core::arch::arm` module. | ||
``` | ||
|
||
- If an issue has been in "blocked" or "help wanted" state for more than two | ||
weeks then it will automatically be scheduled for discussion during the next | ||
weekly meeting. At least one member of the team assigned to the issue must | ||
attend that meeting. |
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.
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.
Will that be part of the triage team duty?