1
0
mirror of https://github.com/docker/compose.git synced 2025-04-08 17:05:13 +02:00

Merge pull request from aanand/jenkins-dco

Validate DCO in script/test-versions
This commit is contained in:
Ben Firshman 2015-03-18 14:49:40 +00:00
commit ae9c965823
3 changed files with 6 additions and 0 deletions

@ -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" \

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

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