Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2014-03-13 14:48:44 +0400
committerMichal Čihař <michal@cihar.com>2014-03-13 14:48:44 +0400
commitee69e2dfb5cfc8e16e1786119ac2bf337d78d012 (patch)
treeb6af7ddf71c8c2da1ef4eb719bce30e963a13f98
parent1740da7f6ec5a38b11d9cc97d98b2650ff0e4eec (diff)
Remove DCO checker from Travis
This is now done by separate GitHub hook. Signed-off-by: Michal Čihař <michal@cihar.com>
-rw-r--r--.travis.yml1
-rwxr-xr-xscripts/check-dco21
2 files changed, 0 insertions, 22 deletions
diff --git a/.travis.yml b/.travis.yml
index c43a122821..754e970515 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -16,7 +16,6 @@ before_script:
script:
- ./scripts/generate-mo --quiet
- PHPUNIT_ARGS=--debug ant phpunit lint
- - if [[ $TRAVIS_PULL_REQUEST != "false" ]] ; then ./scripts/check-dco origin/$TRAVIS_BRANCH..FETCH_HEAD ; fi
after_script:
- php vendor/bin/coveralls -v
matrix:
diff --git a/scripts/check-dco b/scripts/check-dco
deleted file mode 100755
index 15c36bef0d..0000000000
--- a/scripts/check-dco
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-# Checks whether all commits in given range have Signed-Off-By
-
-if [ -z "$1" ] ; then
- echo "Usage: check-dco COMMITRANGE"
- exit 1
-fi
-
-RESULT=0
-
-for rev in `git rev-list --no-merges $1` ; do
- if ! git log -1 $rev | grep -iq '^ Signed-Off-By:' ; then
- echo '------------------------------------------'
- echo "Missing Signed-Off-By in following commit:"
- git --no-pager log -1 $rev
- echo
- RESULT=1
- fi
-done
-
-exit $RESULT