mirror of https://github.com/google/oss-fuzz.git
Updating documentation to reflect new feature custom build frequency (#4235)
This commit is contained in:
parent
8e2a59f8dc
commit
723ac5035b
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue