From 6e841952c08b447fb6aa20f08e73c3d635f3f584 Mon Sep 17 00:00:00 2001 From: Gary Verhaegen Date: Fri, 2 Aug 2019 14:34:12 +0100 Subject: [PATCH] record build times on macos (#2379) --- ci/report-end.yml | 2 +- ci/report-start.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/report-end.yml b/ci/report-end.yml index 8eb28a22ef..8087a03bea 100644 --- a/ci/report-end.yml +++ b/ci/report-end.yml @@ -1,6 +1,6 @@ steps: - bash: | set -euo pipefail - echo "##vso[task.setvariable variable=time;isOutput=true]$(date -uIs)" + echo "##vso[task.setvariable variable=time;isOutput=true]$(date -u +"%Y-%m-%dT%H:%M:%S+00:00")" condition: always() name: end diff --git a/ci/report-start.yml b/ci/report-start.yml index 27ee583c17..1a5db4b38f 100644 --- a/ci/report-start.yml +++ b/ci/report-start.yml @@ -1,7 +1,7 @@ steps: - bash: | set -euo pipefail - echo "##vso[task.setvariable variable=time;isOutput=true]$(date -uIs)" + echo "##vso[task.setvariable variable=time;isOutput=true]$(date -u +"%Y-%m-%dT%H:%M:%S+00:00")" echo "##vso[task.setvariable variable=machine;isOutput=true]$(Agent.MachineName)" condition: always() name: start