Contributing to Apache SkyWalking Cloud on Kubernetes

Firstly, thanks for your interest in contributing! We hope that this will be a pleasant first experience for you, and that you will return to continue contributing.

Code of Conduct

The Apache software Foundation's Code of Conduct governs this project, and everyone participating in it. By participating, you are expected to adhere to this code. If you are aware of unacceptable behavior, please visit the Reporting Guidelines page and follow the instructions there.

How to contribute?

Most of the contributions that we receive are code contributions, but you can also contribute to the documentation or report solid bugs for us to fix.

How to report a bug?

  • Ensure no one did report the bug by searching on GitHub under Issues.

  • If you're unable to find an open issue addressing the problem, open a new one. Be sure to include a title and clear description, as much relevant information as possible, and a code sample or an executable test case demonstrating the expected behavior that is not occurring.

How to add a new feature or change an existing one

Before making any significant changes, please open an issue. Discussing your proposed changes ahead of time will make the contribution process smooth for everyone.

Once we‘ve discussed your changes and you’ve got your code ready, make sure that tests are passing and open your pull request. Your PR is most likely to be accepted if it:

  • Update the README.md with details of changes to the interface.
  • Includes tests for new functionality.
  • References the original issue in the description, e.g., “Resolves #123”.
  • Has a good commit message.

Requirements

Users who want to build a binary from sources have to set up:

  • Go 1.19
  • Node 16.15
  • Git >= 2.30
  • Linux, macOS or Windows+WSL2
  • GNU make

Windows

BanyanDB is built on Linux and macOS that introduced several platform-specific characters to the building system. Therefore, we highly recommend you use WSL2+Ubuntu to execute tasks of the Makefile.

End of line sequence

BanyanDB ALWAYS uses LF(\n) as the line endings, even on Windows. So we need your development tool and IDEs to generate new files with LF as its end of lines.

Building and Testing

Clone the source code and check the necessary tools by

make check-req

Once the checking passes, you should generate files for building by

make generate

Finally, run make build in the source directory, which will build the default binary file in <sub_project>/build/bin/.

make build

Please refer to the installation for more details.

Test your changes before submitting them by

make test

Linting your codes

We have some rules for the code style and please lint your codes locally before opening a pull request.

make lint

If you found some errors in the output of the above command, try to make format to fix some obvious style issues. As for the complicated errors, please correct them manually.

Update licenses

If you import new dependencies or upgrade an existing one, trigger the licenses generator to update the license files.

make license-dep 

Caveat: This task is a step of make pre-push. You can run it to update licenses.

Test your changes before pushing

After you commit the local changes, we have a series of checking tests to verify your changes by

git commit
make pre-push

Please fix any errors raised by the above command.