mirror of
https://github.com/trailofbits/buttercup
synced 2026-06-21 14:11:39 +00:00
a916f4da1f
* add fuzzer and common * fixes * use tmpdir * add fuzzer * add dockerfile * uv stuff * namespace fuzzer * keep distutils for now * use container python for now * pass through flags * add build bot image * add redis * add namespace prefix * more prefixes * start build bot * add fuzzer bot * oof this got complicated * fix author
24 lines
415 B
Protocol Buffer
24 lines
415 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package fuzzermsgs;
|
|
|
|
message BuildRequest {
|
|
string package_name = 1;
|
|
string engine = 2;
|
|
string sanitizer = 3;
|
|
string ossfuzz = 4;
|
|
}
|
|
|
|
message BuildOutput {
|
|
string package_name = 1;
|
|
string engine = 2;
|
|
string sanitizer = 3;
|
|
string output_ossfuzz_path = 4;
|
|
}
|
|
|
|
message WeightedTarget {
|
|
float weight = 1;
|
|
BuildOutput target = 2;
|
|
string harness_path = 3;
|
|
}
|