Skip to content
Snippets Groups Projects

.gitlab-ci.yml: omit redundant description in github status, report BENCHMARKS_TAG instead

Merged Dmitry Kalinkin requested to merge pr/github_status_BENCHMARKS_TAG into master
1 file
+ 1
4
Compare changes
  • Side-by-side
  • Inline
+ 1
4
@@ -52,7 +52,7 @@ stages:
@@ -52,7 +52,7 @@ stages:
-d '{"state":"'"${STATE}"'",
-d '{"state":"'"${STATE}"'",
"target_url":"'"${CI_PIPELINE_URL}"'",
"target_url":"'"${CI_PIPELINE_URL}"'",
"description":"'"${DESCRIPTION} $(TZ=America/New_York date)"'",
"description":"'"${DESCRIPTION} $(TZ=America/New_York date)"'",
"context":"eicweb/reconstruction_benchmarks ('"$DETECTOR_CONFIG"')"
"context":"eicweb/reconstruction_benchmarks ('"${BENCHMARKS_TAG}"', '"$DETECTOR_CONFIG"')"
}' ;
}' ;
fi
fi
@@ -61,7 +61,6 @@ benchmarks:reconstruction:pending:
@@ -61,7 +61,6 @@ benchmarks:reconstruction:pending:
extends: .status
extends: .status
variables:
variables:
STATE: "pending"
STATE: "pending"
DESCRIPTION: "Started..."
when: always
when: always
common:setup:
common:setup:
@@ -130,7 +129,6 @@ benchmarks:reconstruction:success:
@@ -130,7 +129,6 @@ benchmarks:reconstruction:success:
extends: .status
extends: .status
variables:
variables:
STATE: "success"
STATE: "success"
DESCRIPTION: "Succeeded!"
when: on_success
when: on_success
benchmarks:reconstruction:failure:
benchmarks:reconstruction:failure:
@@ -139,5 +137,4 @@ benchmarks:reconstruction:failure:
@@ -139,5 +137,4 @@ benchmarks:reconstruction:failure:
extends: .status
extends: .status
variables:
variables:
STATE: "failure"
STATE: "failure"
DESCRIPTION: "Failed!"
when: on_failure
when: on_failure
Loading