summaryrefslogtreecommitdiff
path: root/contrib/cirrus/timestamp.awk
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-07-27 20:56:17 +0200
committerGitHub <noreply@github.com>2020-07-27 20:56:17 +0200
commit956caf303a80105845b8e94b7018416abc59a474 (patch)
treee4e787beafc2a82c601cd84710f95a097c001a5b /contrib/cirrus/timestamp.awk
parentbf92ec523494859301e6337539bc0d97e232b80a (diff)
parent9fad55c87f0ae6d2d01c77d8c67c5883ccbdbfde (diff)
downloadpodman-956caf303a80105845b8e94b7018416abc59a474.tar.gz
podman-956caf303a80105845b8e94b7018416abc59a474.tar.bz2
podman-956caf303a80105845b8e94b7018416abc59a474.zip
Merge pull request #7070 from edsantiago/ci_fixes
CI - various fixes
Diffstat (limited to 'contrib/cirrus/timestamp.awk')
-rw-r--r--contrib/cirrus/timestamp.awk4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/cirrus/timestamp.awk b/contrib/cirrus/timestamp.awk
index 95b312e51..b3663b303 100644
--- a/contrib/cirrus/timestamp.awk
+++ b/contrib/cirrus/timestamp.awk
@@ -7,7 +7,7 @@
BEGIN {
STARTTIME=systime()
printf "[%s] START", strftime("%T")
- printf " - All [+xxxx] lines that follow are relative to right now.\n"
+ printf " - All [+xxxx] lines that follow are relative to %s.\n", strftime("%FT%T")
}
{
@@ -16,5 +16,5 @@ BEGIN {
END {
printf "[%s] END", strftime("%T")
- printf " - [%+05ds] total duration since START\n", systime()-STARTTIME
+ printf " - [%+05ds] total duration since %s\n", systime()-STARTTIME, strftime("%FT%T")
}