xci: Record promotion time in UTC
[releng.git] / jjb / xci / xci-promote.sh
1 #!/bin/bash
2 # SPDX-license-identifier: Apache-2.0
3 ##############################################################################
4 # Copyright (c) 2018 Ericsson and others.
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 #----------------------------------------------------------------------
12 # This script is used by CI and executed by Jenkins jobs.
13 # You are not supposed to use this script manually if you don't know
14 # what you are doing.
15 #----------------------------------------------------------------------
16
17 # ensure GERRIT_TOPIC is set
18 GERRIT_TOPIC="${GERRIT_TOPIC:-''}"
19
20 # skip the healthcheck if the patch doesn't impact the deployment
21 if [[ "$GERRIT_TOPIC" =~ skip-verify|skip-deployment ]]; then
22     echo "Skipping the healthcheck!"
23     exit 0
24 fi
25
26 # fail if promotion metadata file doesn't exist
27 if [ ! -f $LOCAL_PROMOTION_METADATA_FILE ]; then
28     echo "Unable to find promotion metadata file $LOCAL_PROMOTION_METADATA_FILE"
29     echo "Skipping promotion!"
30     exit 1
31 fi
32
33 # put additional info into the metadata file so we can use that for displaying the information
34 echo "PROMOTED_BY=$BUILD_URL" >> $LOCAL_PROMOTION_METADATA_FILE
35 echo "PROMOTED_ON=$(date -u '+%F_%H:%M'UTC)" >> $LOCAL_PROMOTION_METADATA_FILE
36
37 # upload promotion metadata file to OPNFV artifact repo
38 echo "Storing promotion metadata as $REMOTE_PROMOTION_METADATA_FILE"
39 gsutil cp $LOCAL_PROMOTION_METADATA_FILE $REMOTE_PROMOTION_METADATA_FILE > /dev/null 2>&1
40
41 # update the file metadata on gs to prevent the use of cached version of the file
42 gsutil -m setmeta -r -h "Cache-Control:private, max-age=0, no-transform" \
43     $REMOTE_PROMOTION_METADATA_FILE > /dev/null 2>&1
44
45 # log the metadata to console
46 echo "Stored the metadata for $DEPLOY_SCENARIO"
47 echo "---------------------------------------------------------------------------------"
48 gsutil cat $REMOTE_PROMOTION_METADATA_FILE
49 echo "---------------------------------------------------------------------------------"
50 echo "Scenario $DEPLOY_SCENARIO has successfully been promoted!"