Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
detector_benchmarks_runner
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
benchmarks
detector_benchmarks_runner
Commits
f74180c3
Commit
f74180c3
authored
2 years ago
by
Wouter Deconinck
Browse files
Options
Downloads
Patches
Plain Diff
rm status reporting jobs
parent
2e176c8c
Branches
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#53916
failed
2 years ago
Stage: config
Stage: initialize
Stage: running
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+2
-44
2 additions, 44 deletions
.gitlab-ci.yml
with
2 additions
and
44 deletions
.gitlab-ci.yml
+
2
−
44
View file @
f74180c3
...
@@ -15,35 +15,9 @@ default:
...
@@ -15,35 +15,9 @@ default:
dotenv
:
juggler.env
dotenv
:
juggler.env
stages
:
stages
:
-
status-pending
-
config
-
config
-
initialize
-
initialize
-
status-running
-
running
-
status-report
.status
:
script
:
-
|
if [ -n "${GITHUB_SHA}" ] ; then
curl \
-X POST \
-H "Accept: application/vnd.github+json" \
-H "Authorization: token ${GITHUB_REPO_STATUS_TOKEN}" \
"https://api.github.com/repos/${GITHUB_REPOSITORY}/statuses/${GITHUB_SHA}" \
-d '{"state":"'"${STATE}"'",
"target_url":"'"${CI_PIPELINE_URL}"'",
"description":"'"${DESCRIPTION} $(TZ=America/New_York date)"'",
"context":"eicweb/detector_benchmarks ('"$DETECTOR_CONFIG"')"
}' ;
fi
benchmarks:detector:pending
:
stage
:
status-pending
extends
:
.status
variables
:
STATE
:
"
pending"
DESCRIPTION
:
"
Started..."
when
:
always
common:setup
:
common:setup
:
stage
:
config
stage
:
config
...
@@ -111,24 +85,8 @@ common:benchmarks:
...
@@ -111,24 +85,8 @@ common:benchmarks:
-
git -C ${LOCAL_DATA_PATH}/benchmarks checkout ${GITHUB_REF}
-
git -C ${LOCAL_DATA_PATH}/benchmarks checkout ${GITHUB_REF}
benchmarks:running
:
benchmarks:running
:
stage
:
status-
running
stage
:
running
needs
:
[
"
common:benchmarks"
]
needs
:
[
"
common:benchmarks"
]
trigger
:
trigger
:
include
:
include
:
-
local
:
'
/scratch/${CI_PROJECT_NAME}_${CI_PIPELINE_ID}/benchmarks/config.yml'
-
local
:
'
/scratch/${CI_PROJECT_NAME}_${CI_PIPELINE_ID}/benchmarks/config.yml'
benchmarks:detector:success
:
stage
:
status-report
extends
:
.status
variables
:
STATE
:
"
success"
DESCRIPTION
:
"
Succeeded!"
when
:
on_success
benchmarks:detector:failure
:
stage
:
status-report
extends
:
.status
variables
:
STATE
:
"
failure"
DESCRIPTION
:
"
Failed!"
when
:
on_failure
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment