[kubernetes] change build order (#7261)

This commit is contained in:
AdamKorcz 2022-02-11 15:50:10 +00:00 committed by GitHub
parent cfe1e943f5
commit e618a7870f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -37,6 +37,10 @@ function compile_fuzzer {
compile_go_fuzzer "k8s.io/kubernetes/test/fuzz/${pkg}" $function $fuzzer
}
# Build fuzzers from cncf-fuzzing:
$SRC/cncf-fuzzing/projects/kubernetes/build.sh
compile_fuzzer "yaml" "FuzzDurationStrict"
compile_fuzzer "yaml" "FuzzMicroTimeStrict"
compile_fuzzer "yaml" "FuzzSigYaml"
@ -44,6 +48,3 @@ compile_fuzzer "yaml" "FuzzTimeStrict"
compile_fuzzer "yaml" "FuzzYamlV2"
compile_fuzzer "json" "FuzzStrictDecode"
compile_fuzzer "json" "FuzzNonStrictDecode"
# Build fuzzers from cncf-fuzzing:
$SRC/cncf-fuzzing/projects/kubernetes/build.sh