diff options
author | Fatih Degirmenci <fdegir@gmail.com> | 2018-03-19 15:18:34 +0100 |
---|---|---|
committer | Fatih Degirmenci <fdegir@gmail.com> | 2018-03-19 15:21:04 +0100 |
commit | 08132a0641f00818410e70028c980bc924cd7d98 (patch) | |
tree | 84763673f198b6b53ff5555e83fc9b9d3b17e8c3 | |
parent | c825697ac7f5afac76354faac6421e60c9827e10 (diff) |
xci: Fix envInject and remove scenario distro support check
envInject doesn't play well with variable expansion so it is fixed. [1]
Scenario support check is not necessary for promotion since the
promotion job is common for all scenarios/distros and check is done
as part of earlier distro jobs accordingly. [2]
gsutil upload is also made quiet.
Fixed version can be seen from [3].
[1] https://build.opnfv.org/ci/job/xci-merge-promote-virtual-master/2/console
[2] https://build.opnfv.org/ci/job/xci-merge-promote-virtual-master/4/console
[3] https://build.opnfv.org/ci/job/xci-merge-promote-virtual-master/5/console
Change-Id: Ie36394cab631826209dda4cea6daa456aca3c276
Signed-off-by: Fatih Degirmenci <fdegir@gmail.com>
-rw-r--r-- | jjb/xci/xci-merge-jobs.yml | 2 | ||||
-rwxr-xr-x | jjb/xci/xci-promote.sh | 9 |
2 files changed, 2 insertions, 9 deletions
diff --git a/jjb/xci/xci-merge-jobs.yml b/jjb/xci/xci-merge-jobs.yml index c9788c3d9..64da14d66 100644 --- a/jjb/xci/xci-merge-jobs.yml +++ b/jjb/xci/xci-merge-jobs.yml @@ -361,7 +361,7 @@ wrappers: - inject: - properties-file: "$LOCAL_PROMOTION_METADATA_FILE" + properties-file: "/tmp/$GERRIT_CHANGE_NUMBER/$DISTRO/scenario.properties" - ssh-agent-wrapper - build-timeout: timeout: 240 diff --git a/jjb/xci/xci-promote.sh b/jjb/xci/xci-promote.sh index 3a2367819..fb7e0e6fa 100755 --- a/jjb/xci/xci-promote.sh +++ b/jjb/xci/xci-promote.sh @@ -23,13 +23,6 @@ if [[ "$GERRIT_TOPIC" =~ skip-verify|skip-deployment ]]; then exit 0 fi -# skip the deployment if the scenario is not supported on this distro -OPNFV_SCENARIO_REQUIREMENTS=$WORKSPACE/xci/opnfv-scenario-requirements.yml -if ! sed -n "/^- scenario: $DEPLOY_SCENARIO$/,/^$/p" $OPNFV_SCENARIO_REQUIREMENTS | grep -q $DISTRO; then - echo "# SKIPPED: Scenario $DEPLOY_SCENARIO is NOT supported on $DISTRO" - exit 0 -fi - # fail if promotion metadata file doesn't exist if [ ! -f $LOCAL_PROMOTION_METADATA_FILE ]; then echo "Unable to find promotion metadata file $LOCAL_PROMOTION_METADATA_FILE" @@ -39,7 +32,7 @@ fi # upload promotion metadata file to OPNFV artifact repo echo "Storing promotion metadata as $REMOTE_PROMOTION_METADATA_FILE" -gsutil cp $LOCAL_PROMOTION_METADATA_FILE $REMOTE_PROMOTION_METADATA_FILE +gsutil cp $LOCAL_PROMOTION_METADATA_FILE $REMOTE_PROMOTION_METADATA_FILE > /dev/null 2>&1 # update the file metadata on gs to prevent the use of cached version of the file gsutil -m setmeta -r -h "Cache-Control:private, max-age=0, no-transform" \ |