diff options
author | Ed Warnicke <eaw@cisco.com> | 2016-05-11 11:44:28 -0500 |
---|---|---|
committer | Ed Warnicke <eaw@cisco.com> | 2016-05-16 14:45:15 -0500 |
commit | 39f70768ba8149972ce55f805a76029a8711bf7b (patch) | |
tree | 70cdd03ffdbd06d5d9cbeb9982e1d1ede61519f6 /jjb | |
parent | bb64baaa92b5f8111cb50d150fcdbad1d8a238db (diff) |
Instrument Jenkins images/builds
This patch instruments so we can be certain *what* bootstrap.sh
was used to build the running image and what
include-raw-vpp-build.sh was run for the Job
Change-Id: I69782c3bca71f24d24133205130be059a14a114c
Signed-off-by: Ed Warnicke <eaw@cisco.com>
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/vpp/include-raw-vpp-build.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/jjb/vpp/include-raw-vpp-build.sh b/jjb/vpp/include-raw-vpp-build.sh index 872a9de19..84a77129b 100644 --- a/jjb/vpp/include-raw-vpp-build.sh +++ b/jjb/vpp/include-raw-vpp-build.sh @@ -11,6 +11,16 @@ else echo $CCACHE_DIR does not exist. This must be a new slave. fi +echo "cat /etc/bootstrap.sha" +if [ -f /etc/bootstrap.sha ];then + cat /etc/bootstrap.sha +else + echo "Cannot find cat /etc/bootstrap.sha" +fi + +echo "shasum of this script: ${0}" +shasum $0 + # Check to make sure the patch doesn't need to be rebased # Since there was a discontinuity, patches with a # parent before 30d41ff need to be rebased |