mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-03-31 17:50:26 +08:00
Added a table-of-contents to the contributing guideline file.
This commit is contained in:
parent
f85d8a0ead
commit
5b18f955dc
@ -1,10 +1,21 @@
|
||||
# How to contribute {#contributing}
|
||||
# How to contribute
|
||||
|
||||
Thanks for your interest in contributing to the netCDF project. There are many different platforms and configurations which we don't have access to directly, and your contributions help ensure that things continue to run smoothly for **all** of our users. We'll strive to keep the process simple for you, the contributor, by establishing a handful of guidelines up front.
|
||||
|
||||
> We will assume that you are familiar with `git` and `GitHub`. If not, you may go through the GitHub tutorial found at [https://guides.github.com/activities/hello-world/](https://guides.github.com/activities/hello-world/). This tutorial should only take around 10 minutes.
|
||||
|
||||
# Workflow
|
||||
## Table of Contents
|
||||
|
||||
* [Workflow](#workflow)
|
||||
* [Characteristics of an accepted pull request](#chars)
|
||||
* [Small bug-and-typo fixes](#smallissues)
|
||||
* [Testing your contribution](#testing)
|
||||
* [Spot-checks](#spotcheck)
|
||||
* [Continuous Integration testing](#contint)
|
||||
* [Regression testing with Docker](#regression)
|
||||
* [Final Remarks](#conclusion)
|
||||
|
||||
# Workflow <A NAME="workflow"></A>
|
||||
|
||||
The process for contributing a patch to netCDF roughly follows the following workflow:
|
||||
|
||||
@ -20,7 +31,7 @@ The process for contributing a patch to netCDF roughly follows the following wor
|
||||
|
||||
Once a pull request has been received, it will be reviewed and evaluated by the netCDF developers at Unidata. If there are any questions or comments, they will be appended to the discussion area of the pull request.
|
||||
|
||||
# The characteristics of an accepted pull request
|
||||
# The characteristics of an accepted pull request <A NAME="chars"></A>
|
||||
|
||||
Not every pull request is created equally; while we appreciate every contribution we receive, we do not accept them all. Those that we *do* accept generally have the following in common:
|
||||
|
||||
@ -29,24 +40,24 @@ Not every pull request is created equally; while we appreciate every contributio
|
||||
* **They pass QA** - If new functionality has been added, corresponding unit tests have been created and wired in to the build systems. We do not expect you to perform comprehensive testing across a multitude of platforms, but at the very least your code should **compile** and no existing tests should be broken. A pull request that doesn't compile will be rejected on principle, and a pull request which breaks tests will have to be corrected before it is accepted. See "Testing your changes" below for more information.
|
||||
* **They do not compromise the principles behind netCDF** - NetCDF has a 100% iron-clad commitment to backwards compatibility. Any file ever created with netCDF must be readable by any future version of netCDF. The netCDF data models and file formats are **well** defined. If your purpose is to modify the data model or file format, **please** discuss this with us first. ***If*** we are in agreement regarding the changes, we will need to discuss how to add them as a **new** data-model/file-format. Similarly, netCDF has a commitment to remaining *machine-independent*; data created on one platform/environment/architecture **must** remain readable by any other `libnetcdf` compiled with similar functionality.
|
||||
|
||||
## What about Typo/Bug Fixes/Incremental Fixes?
|
||||
## What about Typo/Bug Fixes/Incremental Fixes? <A NAME="smallissues"></A>
|
||||
|
||||
Many of the pull requests we receive do little other than to fix a typo or correct a bug in our code. This is great, and we encourage as many of these as we can get! "Fixing mistakes" falls within the principles guiding netCDF, and these changes are 1) Typically self-describing rarely result in any issues with QA
|
||||
|
||||
# Testing your changes
|
||||
# Testing your changes <A NAME="testing"></A>
|
||||
|
||||
There are several ways to test your changes to ensure that your pull request passes QA. There are manual *spot-checks* which test the code "on-the-spot", and there are automated *continuous integration* tests which will run and evaluate any contributes to ensure nothing breaks. **Advanced** users may also use Unidata-maintained *Docker* images for running *regression* tests.
|
||||
|
||||
## Spot-check tests
|
||||
## Spot-check tests <A NAME="spotcheck"></A>
|
||||
|
||||
* `make check` if you are using configure/autotools.
|
||||
* `make test` if you are using cmake.
|
||||
|
||||
## Continuous Integration testing with Travis CI
|
||||
## Continuous Integration testing with Travis CI <A NAME="contint"></A>
|
||||
|
||||
Travis CI is a system for providing **automated** continuous integration testing, without requiring any effort on the part of the contributor. Any time a change is pushed out to GitHub, a series of tests will run automatically and will ultimately report a success or a failure. You may view the Unidata Travis dashboard [here](https://travis-ci.org/Unidata/). Each project listed may be "drilled down" into, where specific information may be found.
|
||||
|
||||
## Regression testing with Docker
|
||||
## Regression testing with Docker <A NAME="regression"></A>
|
||||
|
||||
If you are not familiar with Docker, feel free to skip this section *or* read up on Docker [at their website](http://www.docker.io). If you are familiar with Docker, please read on.
|
||||
|
||||
@ -61,7 +72,6 @@ By performing these comprehensive tests, we're able to see if any change in the
|
||||
|
||||
These tests will be run against any pull request submitted; you are encouraged to make use of them if you so like.
|
||||
|
||||
|
||||
# We are here to help
|
||||
# We are here to help <A NAME="conclusion"></A>
|
||||
|
||||
We want as many contributions as we can get, and are here to help ensure that your efforts are not wasted! We will work with you to ensure that your code works on more esoteric platforms (`ARM`, `Windows`) and that the pull request possesses the characteristics described above. Feel free to reach out to us if you have any questions!
|
||||
|
Loading…
x
Reference in New Issue
Block a user