diff --git a/docs/getting-started/new_project_guide.md b/docs/getting-started/new_project_guide.md index 5e752e7b0..1b9a9847b 100644 --- a/docs/getting-started/new_project_guide.md +++ b/docs/getting-started/new_project_guide.md @@ -82,6 +82,7 @@ This configuration file stores project metadata. The following attributes are su - [sanitizers](#sanitizers) (optional) - [architectures](#architectures) (optional) - [help_url](#help_url) (optional) +- [builds_per_day](#build_frequency) (optional) ### 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). +### 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 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.