summaryrefslogtreecommitdiffstats
path: root/jjb/sandbox/verify.sh
diff options
context:
space:
mode:
authorFatih Degirmenci <fatih.degirmenci@ericsson.com>2016-07-13 10:29:40 +0200
committerFatih Degirmenci <fatih.degirmenci@ericsson.com>2016-07-13 10:29:40 +0200
commit245eabf87b5c9085dbe7a9ed8702a5bf7991ff68 (patch)
treea58edd43c53c196d8ec28db16ef020cd845c7b26 /jjb/sandbox/verify.sh
parent39adf3b611ff01fbd38dcdf7336260a84e64c3ae (diff)
sandbox: Introduce dependency between verify jobs
Change-Id: I227e4584685941377052465459962ea99f3e7bfb Signed-off-by: Fatih Degirmenci <fatih.degirmenci@ericsson.com>
Diffstat (limited to 'jjb/sandbox/verify.sh')
-rwxr-xr-xjjb/sandbox/verify.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/jjb/sandbox/verify.sh b/jjb/sandbox/verify.sh
deleted file mode 100755
index f62d2b977..000000000
--- a/jjb/sandbox/verify.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/bash
-
-# this is where we check the commit message, unit test, etc.
-cd $WORKSPACE
-echo
-echo "Commit Message is"
-echo "-------------------------------------"
-git log --format=%B -n 1 $(git rev-parse HEAD)
-echo "-------------------------------------"
-echo
-echo "Repo contents"
-echo "-------------------------------------"
-ls -al
-echo "-------------------------------------"
-echo
-echo "Changed files are"
-echo "-------------------------------------"
-git diff origin/master --name-only
-echo "-------------------------------------"
-echo
-echo "Change introduced"
-echo "-------------------------------------"
-git diff origin/master
-echo "-------------------------------------"
-echo
-echo "git show"
-echo "-------------------------------------"
-git show
-echo "-------------------------------------"