diff options
author | Markos Chandras <mchandras@suse.de> | 2017-08-17 10:24:23 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-17 10:24:23 +0000 |
commit | 1df451788541046609e2bdda1b395b4109e8ca70 (patch) | |
tree | 4ab66c18f7830c49ed71476556d0127abc9c1c40 /jjb | |
parent | 35f07d473eb2dd0122d5412a1909b9aca6517958 (diff) | |
parent | 001de83c0b890e71790c84b711cc593eb4628034 (diff) |
Merge "jjb: xci: bifrost-verify: Disable errexit when uploading logs"
Diffstat (limited to 'jjb')
-rwxr-xr-x | jjb/xci/bifrost-verify.sh | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/jjb/xci/bifrost-verify.sh b/jjb/xci/bifrost-verify.sh index 14c8d37e9..03d9afccd 100755 --- a/jjb/xci/bifrost-verify.sh +++ b/jjb/xci/bifrost-verify.sh @@ -57,16 +57,17 @@ EOF </html> EOF + # Upload landing page + echo "Uploading the landing page" + gsutil -q cp ${WORKSPACE}/index.html ${BIFROST_GS_URL}/index.html + rm -f ${WORKSPACE}/index.html + # Finally, download and upload the entire build log so we can retain # as much build information as possible echo "Uploading the final console output" curl -s -L ${BIFROST_CONSOLE_LOG} > ${WORKSPACE}/build_log.txt gsutil -q cp -Z ${WORKSPACE}/build_log.txt ${BIFROST_GS_URL}/build_log.txt - rm ${WORKSPACE}/build_log.txt - - # Upload landing page - gsutil -q cp ${WORKSPACE}/index.html ${BIFROST_GS_URL}/index.html - rm ${WORKSPACE}/index.html + rm -f ${WORKSPACE}/build_log.txt } function fix_ownership() { @@ -83,6 +84,9 @@ function fix_ownership() { function cleanup_and_upload() { original_exit=$? + echo "Job exit code: $original_exit" + # Turn off errexit + set +o errexit fix_ownership upload_logs exit $original_exit |