aboutsummaryrefslogtreecommitdiff
path: root/docs/getting-started/new_project_guide.md
diff options
context:
space:
mode:
authorkabeer27 <32016558+kabeer27@users.noreply.github.com>2020-08-03 23:13:35 +0530
committerGitHub <noreply@github.com>2020-08-03 10:43:35 -0700
commit723ac5035b959202d807b214600d496c54974ff5 (patch)
tree89cd6862d8ba6c6af7f74131b3d35652132076be /docs/getting-started/new_project_guide.md
parent8e2a59f8dc6f4fa17de4d6e1c0ea4fa008897446 (diff)
downloadoss-fuzz-723ac5035b959202d807b214600d496c54974ff5.tar.gz
Updating documentation to reflect new feature custom build frequency (#4235)
Diffstat (limited to 'docs/getting-started/new_project_guide.md')
-rw-r--r--docs/getting-started/new_project_guide.md11
1 files changed, 11 insertions, 0 deletions
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.