Add RISC-V notification group instructions (#814)

* Clean-up notification groups instructions

* Add RISC-V notification group instructions

* Re-order summary of notification groups

* Add a list of the notification groups

* Apply review suggestion
This commit is contained in:
Yuki Okushi 2020-07-29 02:06:07 +09:00 committed by GitHub
parent a99182921c
commit 593facff2a
5 changed files with 44 additions and 11 deletions

View File

@ -37,10 +37,11 @@
- [Stabilizing Features](./stabilization_guide.md) - [Stabilizing Features](./stabilization_guide.md)
- [Coding conventions](./conventions.md) - [Coding conventions](./conventions.md)
- [Notification groups](notification-groups/about.md) - [Notification groups](notification-groups/about.md)
- ["Cleanup Crew"](notification-groups/cleanup-crew.md)
- [LLVM](notification-groups/llvm.md)
- [Windows](notification-groups/windows.md)
- [ARM](notification-groups/arm.md) - [ARM](notification-groups/arm.md)
- [Cleanup Crew](notification-groups/cleanup-crew.md)
- [LLVM](notification-groups/llvm.md)
- [RISC-V](notification-groups/risc-v.md)
- [Windows](notification-groups/windows.md)
- [Licenses](./licenses.md) - [Licenses](./licenses.md)
# High-level Compiler Architecture # High-level Compiler Architecture

View File

@ -16,6 +16,15 @@ search for existing issues that haven't been claimed yet.
[claim the issue]: https://github.com/rust-lang/triagebot/wiki/Assignment [claim the issue]: https://github.com/rust-lang/triagebot/wiki/Assignment
## List of notification groups
Here's the list of the notification groups:
- [ARM](./arm.md)
- [Cleanup Crew](./cleanup-crew.md)
- [LLVM](./llvm.md)
- [RISC-V](./risc-v.md)
- [Windows](./windows.md)
## What issues are a good fit for notification groups? ## What issues are a good fit for notification groups?
Notification groups tend to get pinged on **isolated** bugs, Notification groups tend to get pinged on **isolated** bugs,
@ -48,10 +57,11 @@ cargo run add-person $your_user_name
Example PRs: Example PRs:
* [Example of adding yourself to the ARM group.](https://github.com/rust-lang/team/pull/358)
* [Example of adding yourself to the Cleanup Crew.](https://github.com/rust-lang/team/pull/221) * [Example of adding yourself to the Cleanup Crew.](https://github.com/rust-lang/team/pull/221)
* [Example of adding yourself to the LLVM group.](https://github.com/rust-lang/team/pull/140) * [Example of adding yourself to the LLVM group.](https://github.com/rust-lang/team/pull/140)
* [Example of adding yourself to the RISC-V group.](https://github.com/rust-lang/team/pull/394)
* [Example of adding yourself to the Windows group.](https://github.com/rust-lang/team/pull/348) * [Example of adding yourself to the Windows group.](https://github.com/rust-lang/team/pull/348)
* [Example of adding yourself to the ARM group.](https://github.com/rust-lang/team/pull/358)
## Tagging an issue for a notification group ## Tagging an issue for a notification group

View File

@ -8,16 +8,15 @@ This list will be used to ask for help both in diagnosing and testing
ARM-related issues as well as suggestions on how to resolve ARM-related issues as well as suggestions on how to resolve
interesting questions regarding our ARM support. interesting questions regarding our ARM support.
The group also has an associated Zulip stream (`#t-compiler/arm`) The group also has an associated Zulip stream ([`#t-compiler/arm`])
where people can go to pose questions and discuss ARM-specific where people can go to pose questions and discuss ARM-specific
topics. topics.
So, if you are interested in participating, please sign up for the So, if you are interested in participating, please sign up for the
ARM group! To do so, you open a PR against the [rust-lang/team] ARM group! To do so, open a PR against the [rust-lang/team]
repository. Just [follow this example][eg], but change the username to repository. Just [follow this example][eg], but change the username to
your own! your own!
[`#t-compiler/arm`]: https://rust-lang.zulipchat.com/#narrow/stream/242906-t-compiler.2Farm
[rust-lang/team]: https://github.com/rust-lang/team [rust-lang/team]: https://github.com/rust-lang/team
[eg]: https://github.com/rust-lang/team/pull/358 [eg]: https://github.com/rust-lang/team/pull/358
[#72569]: https://github.com/rust-lang/rust/pull/72569
[#29520]: https://github.com/rust-lang/rust/pull/29520

View File

@ -0,0 +1,22 @@
# RISC-V notification group
**Github Label:** [O-riscv]
[O-riscv]: https://github.com/rust-lang/rust/labels/O-riscv
This list will be used to ask for help both in diagnosing and testing
RISC-V-related issues as well as suggestions on how to resolve
interesting questions regarding our RISC-V support.
The group also has an associated Zulip stream ([`#t-compiler/risc-v`])
where people can go to pose questions and discuss RISC-V-specific
topics.
So, if you are interested in participating, please sign up for the
RISC-V group! To do so, open a PR against the [rust-lang/team]
repository. Just [follow this example][eg], but change the username to
your own!
[`#t-compiler/risc-v`]: https://rust-lang.zulipchat.com/#narrow/stream/250483-t-compiler.2Frisc-v
[rust-lang/team]: https://github.com/rust-lang/team
[eg]: https://github.com/rust-lang/team/pull/394

View File

@ -8,7 +8,7 @@ This list will be used to ask for help both in diagnosing and testing
Windows-related issues as well as suggestions on how to resolve Windows-related issues as well as suggestions on how to resolve
interesting questions regarding our Windows support. interesting questions regarding our Windows support.
The group also has an associated Zulip stream (`#t-compiler/windows`) The group also has an associated Zulip stream ([`#t-compiler/windows`])
where people can go to pose questions and discuss Windows-specific where people can go to pose questions and discuss Windows-specific
topics. topics.
@ -21,10 +21,11 @@ the group for advice in determining the best course of action:
* What names should we use for static libraries on Windows? [#29520] * What names should we use for static libraries on Windows? [#29520]
So, if you are interested in participating, please sign up for the So, if you are interested in participating, please sign up for the
Windows group! To do so, you open a PR against the [rust-lang/team] Windows group! To do so, open a PR against the [rust-lang/team]
repository. Just [follow this example][eg], but change the username to repository. Just [follow this example][eg], but change the username to
your own! your own!
[`#t-compiler/windows`]: https://rust-lang.zulipchat.com/#streams/242869/t-compiler.2Fwindows
[rust-lang/team]: https://github.com/rust-lang/team [rust-lang/team]: https://github.com/rust-lang/team
[eg]: https://github.com/rust-lang/team/pull/348/ [eg]: https://github.com/rust-lang/team/pull/348/
[#72569]: https://github.com/rust-lang/rust/pull/72569 [#72569]: https://github.com/rust-lang/rust/pull/72569