Validate DCO in script/test-versions

Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
This commit is contained in:
Aanand Prasad 2015-03-17 17:01:36 -07:00
parent 1e5b9dc2eb
commit 85fb8956f3
3 changed files with 6 additions and 0 deletions

View File

@ -9,6 +9,7 @@ docker build -t "$TAG" .
docker run \
--rm \
--volume="/var/run/docker.sock:/var/run/docker.sock" \
--volume="$(pwd):/code" \
-e DOCKER_VERSIONS \
-e "TAG=$TAG" \
--entrypoint="script/test-versions" \

View File

@ -4,6 +4,9 @@
set -e
>&2 echo "Validating DCO"
script/validate-dco
>&2 echo "Running lint checks"
flake8 compose

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -e
source "$(dirname "$BASH_SOURCE")/.validate"
adds=$(validate_diff --numstat | awk '{ s += $1 } END { print s }')