Files
trailofbits-buttercup/fuzzer/protos/fuzzer_msg.proto
T
2over12 a916f4da1f Adds fuzzer and common queues (#3)
* 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
2025-01-17 14:57:33 +01:00

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;
}