mirror of
https://github.com/supleed2/ELEC60015-HLP-CW.git
synced 2024-11-10 02:05:48 +00:00
60 lines
2.4 KiB
Plaintext
60 lines
2.4 KiB
Plaintext
(**
|
|
# Contributing #
|
|
|
|
## Branching ##
|
|
|
|
- Create a feature branch in git.
|
|
- Fork and clone locally.
|
|
|
|
## Style Guidelines ##
|
|
|
|
- Follow [F# Coding Guidelines](https://docs.microsoft.com/en-us/dotnet/fsharp/style-guide/formatting).
|
|
- Take into consideration [FSharpLint](https://github.com/fsprojects/FSharpLint) output.
|
|
- [Fantomas](https://github.com/fsprojects/fantomas) should be run to ensure formatting is consistent.
|
|
|
|
## Testing ##
|
|
|
|
Testing is done in the tests libraries using [Expecto](https://github.com/haf/expecto) which is able to load in any
|
|
testing framework you may need, but is strongly encouraged to keep things consistent and use Expecto tests and [FsCheck](https://github.com/fscheck/FsCheck)
|
|
for any property-based testing.
|
|
|
|
- Add test cases where needed.
|
|
- Tests are run as part of the build process, please ensure they pass.
|
|
- Note that pure F# should be tested - GUI cannot easily be tested.
|
|
|
|
## Documentation ##
|
|
|
|
Documentation is built dynamically from F# script files and markdown files using [FSharp.Formatting](https://github.com/fsprojects/FSharp.Formatting).
|
|
The Reference documentation is dynamically generated, and descriptions specified by using `///` rather than `//` for comments, see the Formatting documentation
|
|
for more information.
|
|
|
|
- Add documentation as necessary, pages can be modified and created in the `./docsrc` directory.
|
|
- Documentation is built during the build process.
|
|
- Consider adding examples if adding new features.
|
|
- [Markdown Syntax](https://daringfireball.net/projects/markdown/syntax)
|
|
|
|
## Building ##
|
|
|
|
- Build the solution with Visual Studio, `build.cmd` or `build.sh`.
|
|
- All binaries will be in `./bin` after being built.
|
|
- When you're ready to commit the code use `build.cmd/sh -t "Release". This will clean up directories, stage,
|
|
and build everything for release. Once you've confirmed it looks good, commit to your branch and make your PR.
|
|
- Please note in order to build the Linux images you must have `Docker` installed.
|
|
|
|
## Releasing ##
|
|
|
|
- Create the distributables via the `Dist` build task, then create the delta and sig files with the `CreateDiffs` task. Upload all of the files
|
|
related to the new version to the release.
|
|
|
|
<div class="row">
|
|
<div class="span1"></div>
|
|
<div class="span6">
|
|
<img src="img/fake.png" alt="Build process"/>
|
|
</div>
|
|
</div>
|
|
|
|
## Merging ##
|
|
|
|
- Send a pull request and have it reviewed.
|
|
|
|
*) |