(Minor) Cirrus: Print timestamp at start

Also record into a file in case a later reference is required

Signed-off-by: Chris Evich <cevich@redhat.com>
This commit is contained in:
Chris Evich 2019-01-10 12:00:45 -05:00
parent 148b4920dc
commit 4e7a7ffe9d
No known key found for this signature in database
GPG key ID: 03EDC70FD578067F
2 changed files with 11 additions and 0 deletions

View file

@ -17,6 +17,7 @@ PACKER_BASE=${PACKER_BASE:-./contrib/cirrus/packer}
CIRRUS_BUILD_ID=${CIRRUS_BUILD_ID:-DEADBEEF} # a human
CIRRUS_BASE_SHA=${CIRRUS_BASE_SHA:-HEAD}
CIRRUS_CHANGE_IN_REPO=${CIRRUS_CHANGE_IN_REPO:-FETCH_HEAD}
START_STAMP_FILEPATH="${START_STAMP_FILEPATH:-/var/tmp/start.timestamp}"
if ! [[ "$PATH" =~ "/usr/local/bin" ]]
then
@ -135,6 +136,13 @@ ircmsg() {
set -e
}
start_timestamp() {
req_env_var "START_STAMP_FILEPATH $START_STAMP_FILEPATH"
[[ -r "$START_STAMP_FILEPATH" ]] || \
echo -e ".\nThe time at the tone will be:\n$(date --iso-8601=seconds | \
tee $START_STAMP_FILEPATH)\nBLEEEEEEEEEEP!\n.\n" # Cirrus strips blank lines from output
}
# Run sudo in directory with GOPATH set
cdsudo() {
DIR="$1"

View file

@ -1,8 +1,11 @@
#!/bin/bash
set -e
source $(dirname $0)/lib.sh
start_timestamp
req_env_var "
USER $USER
HOME $HOME