-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CONTRIBUTING, DEVELOPING, README.md: better document developing process
This patch adds a few notes on how to contribute and develop for vidx2pidx. It also changes makefile to add the `config` target that helps configuring local environment. Signed-off-by: Charles Oliveira <charles.oliveira@linaro.org>
- Loading branch information
Showing
6 changed files
with
124 additions
and
15 deletions.
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,25 @@ | ||
run: | ||
timeout: 10m | ||
|
||
# Run linters over integration tests | ||
build-tags: | ||
- integration | ||
|
||
linters: | ||
disable-all: true # Disable defaults, then enable the ones we want | ||
enable: | ||
- deadcode | ||
- errcheck | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- staticcheck | ||
- structcheck | ||
- typecheck | ||
- unused | ||
- varcheck | ||
- bodyclose | ||
- stylecheck | ||
- gosec | ||
- goimports | ||
- gci |
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,37 @@ | ||
# Contributing to vidx2pidx | ||
We want to make contributing to this project as easy and transparent as possible, whether it's: | ||
|
||
- Reporting a bug | ||
- Discussing the current state of the code | ||
- Submitting a fix | ||
- Proposing new features | ||
|
||
## We develop with Github | ||
We use Github to host code, track issues and feature requests, as well as accept pull requests. | ||
|
||
## We use [Github flow](https://guides.github.com/introduction/flow/index.html), so all code changes happen through Pull Requests | ||
Pull requests are the best way to propose changes to the codebase (we use [Github Flow](https://guides.github.com/introduction/flow/index.html)). We actively welcome your pull requests: | ||
|
||
1. Fork the repo and create your branch from `main`. | ||
2. If you've added code that should be tested, add [tests](https://golang.org/pkg/testing/). | ||
3. If you've changed APIs, update the documentation. | ||
4. Ensure the `make coverage-check` passes, we keep code coverage at 100%. | ||
5. Make sure your code lints. | ||
6. Open a [pull request](https://github.com/Open-CMSIS-Pack/vidx2pidx/pulls)! | ||
|
||
## Report bugs using Github's [issues](https://github.com/Open-CMSIS-Pack/vidx2pidx/issues) | ||
We use GitHub issues to track public bugs. Report a bug by [opening a new issue](https://github.com/Open-CMSIS-Pack/vidx2pidx/issues/new). | ||
|
||
## Write bug reports with detail, background, and sample code | ||
**Great Bug Reports** tend to have: | ||
|
||
- A quick summary and/or background | ||
- Steps to reproduce | ||
- Be specific! | ||
- Give sample code if you can | ||
- What you expected would happen | ||
- What actually happens | ||
- Notes (possibly including why you think this might be happening, or stuff you tried that didn't work) | ||
|
||
## Any contributions you make will be under the Apache 2.0 Software License | ||
In short, when you submit code changes, your submissions are understood to be under the same [Apache 2.0 License](https://choosealicense.com/licenses/apache-2.0/) that covers the project. Feel free to contact the maintainers if that's a concern. |
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,32 @@ | ||
# Developing vidx2pidx | ||
|
||
Follow steps below to start developing for `vidx2pidx`: | ||
1. Requirements: | ||
- [Install Make](https://www.gnu.org/software/make/) | ||
- [Install Golang](https://golang.org/doc/install) | ||
- [Install GolangCI-Lint](https://golangci-lint.run/usage/install/#local-installation) | ||
|
||
2. Clone the repo: | ||
`$ git clone https://github.com/open-cmsis-pack/vidx2pidx.git` | ||
|
||
3. Enter the checked source | ||
`cd vidx2pidx` | ||
|
||
4. Configure your local environment | ||
`make config` | ||
|
||
5. Make sure all tests are passing | ||
`make test-all` | ||
|
||
6. Make sure it builds | ||
`make build/vidx2pidx` | ||
|
||
7. Done! You can now start changing the source code, please refer to [contributing guide](CONTRIBUTING.md) to start contributing to the project | ||
|
||
# Releasing | ||
|
||
If you have rights to push to the `main` branch of this repo, you might be entitled to | ||
make releases. Do that by running: | ||
`make release` | ||
|
||
*NOTE*: We use [Semantic Versioning](https://semver.org/) for versioning vidx2pidx. |
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
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
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,4 @@ | ||
#!/bin/bash | ||
|
||
make lint | ||
make format-check |