diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-02-02 16:53:32 +0100 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2019-02-02 16:53:32 +0100 |
commit | 76cca182b5d17340e747d1482d4961471f6dfafd (patch) | |
tree | 1020583dc3e7a58b9063d9406b830655cd3811da /jjb | |
parent | 075473a5b58834c81dd51d42375c9a841e715292 (diff) |
Add debug data in functest-alpine.sh
It hasn't run since latest Jenkins maintainance.
It will help finding the side effect.
It also removes a former condition.
Change-Id: I46b68ca65df43435f6ed96933c87111d9cfc2f7f
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'jjb')
-rwxr-xr-x | jjb/functest/functest-alpine.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/jjb/functest/functest-alpine.sh b/jjb/functest/functest-alpine.sh index e08cb8d08..bde7b9c5e 100755 --- a/jjb/functest/functest-alpine.sh +++ b/jjb/functest/functest-alpine.sh @@ -107,12 +107,11 @@ rc_file_vol="-v ${rc_file}:${FUNCTEST_DIR}/conf/env_file" echo "Functest: Start Docker and prepare environment" echo "Functest: Download images that will be used by test cases" +env +pwd +ls -l images_dir="${HOME}/opnfv/functest/images" download_script=${WORKSPACE}/functest/ci/download_images.sh -if [[ ! -f ${download_script} ]]; then - # to support Danube as well - wget https://git.opnfv.org/functest/plain/functest/ci/download_images.sh -O ${download_script} 2> ${redirect} -fi chmod +x ${download_script} ${download_script} ${images_dir} ${DEPLOY_SCENARIO} ${HOST_ARCH} 2> ${redirect} |