From 1eaf1847b2724b796f081dd34a208d553a8c95d8 Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Thu, 20 Feb 2025 14:15:34 +1300 Subject: [PATCH 1/3] CONTRIBUTING.md: Initial version --- CONTRIBUTING.md | 71 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 000000000..86df13777 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,71 @@ +# Introduction + +Thanks for thinking about contributing to the Yosys project. If this is your +first time contributing to an open source project, please take a look at the +following guide: +https://opensource.guide/how-to-contribute/#orienting-yourself-to-a-new-project. + + +# Using the issue tracker + +The [issue tracker](https://github.com/YosysHQ/yosys/issues) is used for +tracking bugs or other problems with Yosys or its documentation. It is also the +place to go for requesting new features. +When [creating a new issue](https://github.com/YosysHQ/yosys/issues/new/choose), +we have a few templates available. Please make use of these! It will make it +much easier for someone to respond and help. + +### Bug reports + +Before you submit an issue, please have a search of the existing issues in case +one already exists. Making sure that you have a minimal, complete and +verifiable example (MVCE) is a great way to quickly check an existing issue +against a new one. Stack overflow has a guide on [how to create an +MVCE](https://stackoverflow.com/help/minimal-reproducible-example). The +[`bugpoint` +command](https://yosyshq.readthedocs.io/projects/yosys/en/latest/cmd/bugpoint.html) +in Yosys can be helpful for this process. + + +# Using pull requests + +If you are working on something to add to Yosys, or fix something that isn't +working quite right, make a PR! An open PR, even as a draft, tells everyone +that you're working on it and they don't have to. It can also be a useful way +to solicit feedback on in-progress changes. See below to find the best way to +[ask us questions](#asking-questions). + +In general, all changes to the code are done as a +[PR](https://github.com/YosysHQ/yosys/pulls), with [Continuous Integration +(CI)](https://github.com/YosysHQ/yosys/actions) tools that automatically run the +full suite of tests compiling and running Yosys. Please make use of this! If +you're adding a feature: add a test! Not only does it verify that your feature +is working as expected, but it can also be a handy way for people to see how the +feature is used. If you're fixing a bug: add a test! If you can, do this +first; it's okay if the test starts off failing - you already know there is a +bug. CI also helps to make sure that your changes still work under a range of +compilers, settings, and targets. + + +### Labels + +We use [labels](https://github.com/YosysHQ/yosys/labels) to help categorise +issues and PRs. If a label seems relevant to your work, please do add it; this +also includes the labels beggining with 'status-'. The 'merge-' labels are used +by maintainers for tracking and communicating which PRs are ready and pending +merge; please do not use these labels if you are not a maintainer. + + +# Asking questions + +If you have a question about how to use Yosys, please ask on our [discussions +page](https://github.com/YosysHQ/yosys/discussions) or in our [community +slack](https://join.slack.com/t/yosyshq/shared_invite/zt-1aopkns2q-EiQ97BeQDt_pwvE41sGSuA). +The slack is also a great place to ask questions about developing or +contributing to Yosys. + +We have open dev 'jour fixe' (JF) meetings where developers from YosysHQ and the +community come together to discuss open issues and PRs. This is also a good +place to talk to us about how to implement larger PRs. Please join the +community slack if you would like to join the next meeting, the link is +available in the description of the #devel-discuss channel. From 9c9b3ebf9e0ab3e74ce8694090f49de34fa7f4aa Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Thu, 20 Feb 2025 14:15:38 +1300 Subject: [PATCH 2/3] CONTRIBUTING.md: Move PR link --- CONTRIBUTING.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 86df13777..36940ae1b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -30,21 +30,21 @@ in Yosys can be helpful for this process. # Using pull requests If you are working on something to add to Yosys, or fix something that isn't -working quite right, make a PR! An open PR, even as a draft, tells everyone -that you're working on it and they don't have to. It can also be a useful way -to solicit feedback on in-progress changes. See below to find the best way to -[ask us questions](#asking-questions). +working quite right, make a [PR](https://github.com/YosysHQ/yosys/pulls)! An +open PR, even as a draft, tells everyone that you're working on it and they +don't have to. It can also be a useful way to solicit feedback on in-progress +changes. See below to find the best way to [ask us +questions](#asking-questions). -In general, all changes to the code are done as a -[PR](https://github.com/YosysHQ/yosys/pulls), with [Continuous Integration -(CI)](https://github.com/YosysHQ/yosys/actions) tools that automatically run the -full suite of tests compiling and running Yosys. Please make use of this! If -you're adding a feature: add a test! Not only does it verify that your feature -is working as expected, but it can also be a handy way for people to see how the -feature is used. If you're fixing a bug: add a test! If you can, do this -first; it's okay if the test starts off failing - you already know there is a -bug. CI also helps to make sure that your changes still work under a range of -compilers, settings, and targets. +In general, all changes to the code are done as a PR, with [Continuous +Integration (CI)](https://github.com/YosysHQ/yosys/actions) tools that +automatically run the full suite of tests compiling and running Yosys. Please +make use of this! If you're adding a feature: add a test! Not only does it +verify that your feature is working as expected, but it can also be a handy way +for people to see how the feature is used. If you're fixing a bug: add a test! +If you can, do this first; it's okay if the test starts off failing - you +already know there is a bug. CI also helps to make sure that your changes still +work under a range of compilers, settings, and targets. ### Labels From 38746ea5fad7018f00d2143c491ebd637552e7e0 Mon Sep 17 00:00:00 2001 From: Krystine Sherwin <93062060+KrystalDelusion@users.noreply.github.com> Date: Thu, 20 Feb 2025 14:15:39 +1300 Subject: [PATCH 3/3] docs: Cross reference contributing .md points to .html on latest .rst points to .md on main (not that it will work before this is merged) --- CONTRIBUTING.md | 2 ++ .../yosys_internals/extending_yosys/contributing.rst | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 36940ae1b..6c4376cc4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -5,6 +5,8 @@ first time contributing to an open source project, please take a look at the following guide: https://opensource.guide/how-to-contribute/#orienting-yourself-to-a-new-project. +Information about the Yosys coding style is available on our Read the Docs: +https://yosys.readthedocs.io/en/latest/yosys_internals/extending_yosys/contributing.html. # Using the issue tracker diff --git a/docs/source/yosys_internals/extending_yosys/contributing.rst b/docs/source/yosys_internals/extending_yosys/contributing.rst index e06de61b1..69258aa5f 100644 --- a/docs/source/yosys_internals/extending_yosys/contributing.rst +++ b/docs/source/yosys_internals/extending_yosys/contributing.rst @@ -1,6 +1,14 @@ Contributing to Yosys ===================== +.. note:: + + For information on making a pull request on github, refer to our + |CONTRIBUTING|_ file. + +.. |CONTRIBUTING| replace:: :file:`CONTRIBUTING.md` +.. _CONTRIBUTING: https://github.com/YosysHQ/yosys/CONTRIBUTING.md + Coding Style ------------