From 466e21b2732fabdf4481e45c61f1d5366d246777 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Mon, 17 May 2021 15:10:50 +0200 Subject: [PATCH] hack/validate: skip DCO in "default" We perform a DCO check before we run all other tests, so we can skip it as part of the validate step. Leaving the line in for visibility, and in case we switch from Jenkins to (e.g.) GitHub actions. Signed-off-by: Sebastiaan van Stijn --- hack/validate/default | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hack/validate/default b/hack/validate/default index fbe442ee15..cb85489190 100755 --- a/hack/validate/default +++ b/hack/validate/default @@ -4,7 +4,8 @@ export SCRIPTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" -. "${SCRIPTDIR}"/dco +# Skip DCO check here, as it's already checked in a separate stage in the Jenkinsfile +#. "${SCRIPTDIR}"/dco . "${SCRIPTDIR}"/default-seccomp . "${SCRIPTDIR}"/pkg-imports . "${SCRIPTDIR}"/swagger