From 7db2dd5cd157b4eb4de82cb11884df707d8d57a1 Mon Sep 17 00:00:00 2001 From: huiwq1990 Date: Fri, 1 Jul 2022 21:02:52 +0800 Subject: [PATCH] openyurt fuzzing test Signed-off-by: huiwq1990 --- projects/openyurt/build.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 projects/openyurt/build.sh diff --git a/projects/openyurt/build.sh b/projects/openyurt/build.sh new file mode 100755 index 00000000..94acaee9 --- /dev/null +++ b/projects/openyurt/build.sh @@ -0,0 +1,12 @@ +#!/bin/bash -eu +# set -o nounset +# set -o pipefail +# set -o errexit +# set -x + +PROJECT_ROOT="${GOPATH:-/root/go}/src/github.com/openyurtio" + +# Build the fuzzers for all cloned sub-projects +find "${PROJECT_ROOT}/" -type f -name oss_fuzz_build.sh | xargs chmod +x + +find "${PROJECT_ROOT}/" -type f -name oss_fuzz_build.sh | bash -e