Skip to content
Snippets Groups Projects
Commit c1abc922 authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

feat: Add TZ=New_York date to reports to GitHub

parent 792c90da
No related branches found
No related tags found
1 merge request!133feat: Add TZ=New_York date to reports to GitHub
...@@ -49,7 +49,7 @@ stages: ...@@ -49,7 +49,7 @@ stages:
"https://api.github.com/repos/${GITHUB_REPOSITORY}/statuses/${GITHUB_SHA}" \ "https://api.github.com/repos/${GITHUB_REPOSITORY}/statuses/${GITHUB_SHA}" \
-d '{"state":"'"${STATE}"'", -d '{"state":"'"${STATE}"'",
"target_url":"'"${CI_PIPELINE_URL}"'", "target_url":"'"${CI_PIPELINE_URL}"'",
"description":"'"${DESCRIPTION}"'", "description":"'"${DESCRIPTION} $(TZ=America/New_York date)"'",
"context":"eicweb/detector_benchmarks ('"$DETECTOR_CONFIG"')" "context":"eicweb/detector_benchmarks ('"$DETECTOR_CONFIG"')"
}' ; }' ;
fi fi
...@@ -60,7 +60,7 @@ benchmarks:detector:pending: ...@@ -60,7 +60,7 @@ benchmarks:detector:pending:
extends: .status extends: .status
variables: variables:
STATE: "pending" STATE: "pending"
DESCRIPTION: "The detector benchmarks are running..." DESCRIPTION: "Started..."
when: always when: always
common:setup: common:setup:
...@@ -171,7 +171,7 @@ benchmarks:detector:success: ...@@ -171,7 +171,7 @@ benchmarks:detector:success:
extends: .status extends: .status
variables: variables:
STATE: "success" STATE: "success"
DESCRIPTION: "The detector benchmarks succeeded!" DESCRIPTION: "Succeeded!"
when: on_success when: on_success
benchmarks:detector:failure: benchmarks:detector:failure:
...@@ -179,7 +179,7 @@ benchmarks:detector:failure: ...@@ -179,7 +179,7 @@ benchmarks:detector:failure:
extends: .status extends: .status
variables: variables:
STATE: "failure" STATE: "failure"
DESCRIPTION: "The detector benchmarks failed!" DESCRIPTION: "Failed!"
when: on_failure when: on_failure
benchmarks:reconstruction: benchmarks:reconstruction:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment