From e19d9f730c6e77cd664b46a24ecfa585ba5ef116 Mon Sep 17 00:00:00 2001 From: Wouter Deconinck <wdconinc@gmail.com> Date: Mon, 26 Sep 2022 23:52:20 +0000 Subject: [PATCH] feat: Add TZ=New_York date to reports to GitHub --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 54ea9781..75181da0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,7 +45,7 @@ stages: "https://api.github.com/repos/${GITHUB_REPOSITORY}/statuses/${GITHUB_SHA}" \ -d '{"state":"'"${STATE}"'", "target_url":"'"${CI_PIPELINE_URL}"'", - "description":"'"${DESCRIPTION}"'", + "description":"'"${DESCRIPTION} $(TZ=America/New_York date)"'", "context":"eicweb/physics_benchmarks ('"$DETECTOR_CONFIG"')" }' ; fi @@ -55,7 +55,7 @@ benchmarks:physics:pending: extends: .status variables: STATE: "pending" - DESCRIPTION: "The physics benchmarks are running..." + DESCRIPTION: "Started..." when: always common:setup: @@ -132,7 +132,7 @@ benchmarks:physics:success: extends: .status variables: STATE: "success" - DESCRIPTION: "The physics benchmarks succeeded!" + DESCRIPTION: "Succeeded!" when: on_success benchmarks:physics:failure: @@ -140,5 +140,5 @@ benchmarks:physics:failure: extends: .status variables: STATE: "failure" - DESCRIPTION: "The physics benchmarks failed!" + DESCRIPTION: "Failed!" when: on_failure -- GitLab