libspng/CONTRIBUTING.md

56 lines
1.1 KiB
Markdown
Raw Normal View History

2018-05-27 14:01:42 +00:00
# Contributing
2019-03-18 19:46:45 +01:00
If you intend to make major changes you should let others know by creating a
2019-08-10 17:26:48 +02:00
[new issue](https://github.com/randy408/libspng/issues).
2018-05-27 14:01:42 +00:00
# Fork
2019-08-10 17:26:48 +02:00
Fork this project on GitHub and clone your repository.
2018-05-27 14:01:42 +00:00
```
2019-08-10 17:26:48 +02:00
git clone https://github.com/username/libspng.git
2018-05-27 14:01:42 +00:00
cd libspng
2019-08-10 17:26:48 +02:00
git remote add upstream https://github.com/randy408/libspng.git
2018-05-27 14:01:42 +00:00
```
Create a debug build
```
meson -Ddev_build=true --buildtype=debug build
2018-05-27 14:01:42 +00:00
cd build
```
Enable ASan/UBSan
```
meson configure -Db_sanitize=address,undefined
```
# Code
* Coding style should be consistent with the existing style.
* Use C99 standard code.
* Code must be free of undefined behavior
* Code must conform to the rules of the [CERT C Coding Standard](https://wiki.sei.cmu.edu/confluence/display/c/SEI+CERT+C+Coding+Standard).
2018-05-27 14:01:42 +00:00
# Test
Start with running Clang Static Analyzer
`ninja scan-build`
Run the testuite
`ninja test`
2019-08-10 17:26:48 +02:00
All tests should pass, some runtime errors reported by ASan/UBSan do not fail
a test but are considered bugs, check build/meson-logs/testlog.txt for any errors.
2018-05-27 14:01:42 +00:00
# Push
Create a merge request once you've pushed your local commits.