File tree Expand file tree Collapse file tree 3 files changed +21
-49
lines changed
Expand file tree Collapse file tree 3 files changed +21
-49
lines changed Original file line number Diff line number Diff line change 3434
3535jobs :
3636
37+ fuzz-roundtrippers :
38+ runs-on : ubuntu-latest
39+ timeout-minutes : 60
40+ steps :
41+ - uses : actions/checkout@v4
42+ - uses : actions/setup-go@v5
43+ with :
44+ go-version-file : ' go.mod'
45+ - name : " Run dev/ci/presubmits/fuzz-roundtrippers"
46+ run : |
47+ ./dev/ci/presubmits/fuzz-roundtrippers
48+ env :
49+ ARTIFACTS : /tmp/artifacts
50+ - name : " Upload artifacts"
51+ uses : actions/upload-artifact@v4
52+ with :
53+ name : artifacts-fuzz-roundtrippers
54+ path : /tmp/artifacts/
55+
56+
3757 test-mockgcp :
3858 runs-on : ubuntu-latest
3959 timeout-minutes : 60
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ cd ${REPO_ROOT}
2222
2323go test -v ./pkg/fuzztesting/fuzztests/ -fuzz=FuzzAllMappers -fuzztime 600s # fuzz for 10 minutes because we are fuzzing all the registered mappers
2424
25+ # Please do not add more fuzzers here; register them so they are run with FuzzAllMappers (or a similar approach)
2526go test -v ./pkg/controller/direct/apigee/ -fuzz=FuzzApigeeEndpointAttachmentSpec -fuzztime 60s
2627go test -v ./pkg/controller/direct/apigee/ -fuzz=FuzzApigeeEndpointAttachmentObservedState -fuzztime 60s
2728go test -v ./pkg/controller/direct/apigee/ -fuzz=FuzzApigeeEnvgroupSpec -fuzztime 60s
You can’t perform that action at this time.
0 commit comments