Updating documentation to reflect new feature custom build frequency (#4235)

This commit is contained in:
kabeer27 2020-08-03 23:13:35 +05:30 committed by GitHub
parent 8e2a59f8dc
commit 723ac5035b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -82,6 +82,7 @@ This configuration file stores project metadata. The following attributes are su
- [sanitizers](#sanitizers) (optional) - [sanitizers](#sanitizers) (optional)
- [architectures](#architectures) (optional) - [architectures](#architectures) (optional)
- [help_url](#help_url) (optional) - [help_url](#help_url) (optional)
- [builds_per_day](#build_frequency) (optional)
### homepage ### homepage
You project's homepage. You project's homepage.
@ -169,6 +170,16 @@ reproducing and fixing bugs than the standard one outlined in the reproducing gu
`help_url` example: [skia](https://github.com/google/oss-fuzz/blob/master/projects/skia/project.yaml). `help_url` example: [skia](https://github.com/google/oss-fuzz/blob/master/projects/skia/project.yaml).
### builds_per_day (optional) {#build_frequency}
The number of times the project should be built per day.
OSS-Fuzz allows upto 4 builds per day, and builds once per day by default.
Example:
```yaml
builds_per_day: 2
```
Will build the project twice per day.
## Dockerfile ## Dockerfile
This configuration file defines the Docker image for your project. Your [build.sh](#build.sh) script will be executed in inside the container you define. This configuration file defines the Docker image for your project. Your [build.sh](#build.sh) script will be executed in inside the container you define.