[istio] Fix failing CI (#7349)

This commit is contained in:
AdamKorcz 2022-03-02 14:50:13 +00:00 committed by GitHub
parent 33ee62256f
commit 0c6ed8df6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -15,5 +15,13 @@
#
################################################################################
$SRC/istio/tests/fuzz/oss_fuzz_build.sh
if [ -n "${OSS_FUZZ_CI-}" ]
then
echo "Skipping most fuzzers since the OSS-fuzz CI may fail from running out of disk space."
mv ./tests/fuzz/kube_gateway_controller_fuzzer.go ./pilot/pkg/config/kube/gateway/
compile_go_fuzzer istio.io/istio/pilot/pkg/config/kube/gateway ConvertResourcesFuzz fuzz_convert_resources
else
$SRC/istio/tests/fuzz/oss_fuzz_build.sh
fi