Merge pull request #452 from ilanpillemer/align-deps-for-fuzzing
Align version of dependencies when Fuzzing
This commit is contained in:
commit
5d91fcc850
|
|
@ -22,7 +22,7 @@ PROJECT_PATH="github.com/fluxcd/helm-controller"
|
||||||
|
|
||||||
cd "${GO_SRC}"
|
cd "${GO_SRC}"
|
||||||
|
|
||||||
# Move fuzzer to their respective directories.
|
# Move fuzzer to their respective directories.
|
||||||
# This removes dependency noises from the modules' go.mod and go.sum files.
|
# This removes dependency noises from the modules' go.mod and go.sum files.
|
||||||
cp "${PROJECT_PATH}/tests/fuzz/fuzz_controllers.go" "${PROJECT_PATH}/controllers/"
|
cp "${PROJECT_PATH}/tests/fuzz/fuzz_controllers.go" "${PROJECT_PATH}/controllers/"
|
||||||
|
|
||||||
|
|
@ -30,7 +30,7 @@ cp "${PROJECT_PATH}/tests/fuzz/fuzz_controllers.go" "${PROJECT_PATH}/controllers
|
||||||
# compile fuzz tests for the runtime module
|
# compile fuzz tests for the runtime module
|
||||||
pushd "${PROJECT_PATH}"
|
pushd "${PROJECT_PATH}"
|
||||||
|
|
||||||
go mod tidy
|
go get -d github.com/AdaLogics/go-fuzz-headers
|
||||||
compile_go_fuzzer "${PROJECT_PATH}/controllers/" FuzzHelmreleaseComposeValues fuzz_helmrelease_composevalues
|
compile_go_fuzzer "${PROJECT_PATH}/controllers/" FuzzHelmreleaseComposeValues fuzz_helmrelease_composevalues
|
||||||
compile_go_fuzzer "${PROJECT_PATH}/controllers/" FuzzHelmreleaseReconcile fuzz_helmrelease_reconcile
|
compile_go_fuzzer "${PROJECT_PATH}/controllers/" FuzzHelmreleaseReconcile fuzz_helmrelease_reconcile
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue