mirror of
https://github.com/moby/moby.git
synced 2026-01-11 18:51:37 +00:00
17 lines
488 B
Bash
Executable File
17 lines
488 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Run default validation, exclude vendor because it's slow
|
|
|
|
SCRIPTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# 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}"/yamllint
|
|
. "${SCRIPTDIR}"/swagger
|
|
. "${SCRIPTDIR}"/swagger-gen
|
|
. "${SCRIPTDIR}"/deprecate-integration-cli
|
|
. "${SCRIPTDIR}"/golangci-lint
|
|
. "${SCRIPTDIR}"/shfmt
|