Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
topside
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
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
EIC
detectors
topside
Merge requests
!37
Pipeline trigers
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Pipeline trigers
pipeline_trig
into
master
Overview
0
Commits
2
Pipelines
0
Changes
1
Merged
Whitney Armstrong
requested to merge
pipeline_trig
into
master
4 years ago
Overview
0
Commits
2
Pipelines
0
Changes
1
Expand
Tiggering benchmark pipelines.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
f7edf85c
2 commits,
4 years ago
1 file
+
27
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
27
−
0
Options
@@ -11,6 +11,7 @@ stages:
-
docs
-
test
-
finalize
-
deploy
compile
:
stage
:
build
@@ -94,3 +95,29 @@ topside:config_testing:
-
checkOverlaps -c topside.xml | tee doc/overlap_check.out | wc -l
-
cat doc/overlap_check.out
allow_failure
:
true
benchmarks:reconstruction
:
stage
:
deploy
trigger
:
project
:
EIC/benchmarks/reconstruction_benchmarks
needs
:
[
"
overlap_check"
,
"
report"
]
rules
:
-
if
:
'
$CI_PIPELINE_SOURCE
==
"merge_request_event"'
when
:
never
-
if
:
'
$CI_COMMIT_BRANCH
!=
"master"'
when
:
never
-
when
:
on_success
benchmarks:physics
:
stage
:
deploy
trigger
:
project
:
EIC/benchmarks/physics_benchmarks
needs
:
[
"
overlap_check"
,
"
report"
]
rules
:
-
if
:
'
$CI_PIPELINE_SOURCE
==
"merge_request_event"'
when
:
never
-
if
:
'
$CI_COMMIT_BRANCH
!=
"master"'
when
:
never
-
when
:
on_success
Loading