diff options
author | mbeierl <mark.beierl@dell.com> | 2017-01-27 13:15:53 -0500 |
---|---|---|
committer | mbeierl <mark.beierl@dell.com> | 2017-01-27 13:24:06 -0500 |
commit | cc5f999694cb4052d044261b18ec8fedf3de866e (patch) | |
tree | a4bff040204c82ff8a2e7eef1ad8e13322249d8c /ci | |
parent | 77ece642cf214cd10abe0943280926b93e7c5442 (diff) |
Dump env so I can see what variables are visible once the job is run under Jenkins
Change-Id: I576a75864fa0d7c6d12990c91984e12b1489258f
Signed-off-by: mbeierl <mark.beierl@dell.com>
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/daily.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ci/daily.sh b/ci/daily.sh index c26e8d3..80263ae 100755 --- a/ci/daily.sh +++ b/ci/daily.sh @@ -53,13 +53,17 @@ done < $WORKSPACE/ci/job/admin.rc echo "TEST_DB_URL=http://testresults.opnfv.org/test/api/v1" >> $WORKSPACE/ci/job/admin.rc +echo ========================================================================== +echo Environment +env | sort +echo ========================================================================== + $WORKSPACE/ci/delete_stack.sh $WORKSPACE/ci/create_glance_image.sh $WORKSPACE/ci/create_storperf_flavor.sh $WORKSPACE/ci/launch_docker_container.sh $WORKSPACE/ci/create_stack.sh $CINDER_NODES 10 "Ubuntu 16.04 x86_64" $NETWORK - echo ========================================================================== echo Starting warmup echo ========================================================================== @@ -88,6 +92,8 @@ export WORKLOAD=ws,wr,rs,rr,rw export BLOCK_SIZE=2048,8192,16384 export QUEUE_DEPTH=1,2,8 export SCENARIO_NAME="${CINDER_BACKEND}_${WORKLOAD}" +export VERSION +export BUILD_TAG JOB=`$WORKSPACE/ci/start_job.sh \ | awk '/job_id/ {print $2}' | sed 's/"//g'` |