Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eicd
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
eicd
Merge requests
!22
Resolve "Add pipeline triggers"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "Add pipeline triggers"
1-add-pipeline-triggers
into
master
Overview
0
Commits
8
Pipelines
10
Changes
1
Merged
Whitney Armstrong
requested to merge
1-add-pipeline-triggers
into
master
4 years ago
Overview
0
Commits
8
Pipelines
10
Changes
1
Expand
Closes
#1 (closed)
Edited
4 years ago
by
Whitney Armstrong
0
0
Merge request reports
Compare
master
version 7
b854eadc
4 years ago
version 6
eb98a325
4 years ago
version 5
9be65d5b
4 years ago
version 4
f8892887
4 years ago
version 3
9069a869
4 years ago
version 2
02f506ad
4 years ago
version 1
86018f46
4 years ago
master (base)
and
latest version
latest version
844292d6
8 commits,
4 years ago
version 7
b854eadc
7 commits,
4 years ago
version 6
eb98a325
6 commits,
4 years ago
version 5
9be65d5b
5 commits,
4 years ago
version 4
f8892887
4 commits,
4 years ago
version 3
9069a869
3 commits,
4 years ago
version 2
02f506ad
2 commits,
4 years ago
version 1
86018f46
1 commit,
4 years ago
1 file
+
60
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
60
−
0
Options
image
:
eicweb.phy.anl.gov:4567/containers/eic_container/eic:latest
workflow
:
rules
:
-
if
:
'
$CI_PIPELINE_SOURCE
==
"merge_request_event"'
-
if
:
'
$CI_PIPELINE_SOURCE
==
"web"'
-
if
:
'
$CI_PIPELINE_SOURCE
==
"webide"'
-
if
:
'
$CI_COMMIT_BRANCH
==
"master"'
-
if
:
'
$CI_COMMIT_TAG'
default
:
before_script
:
-
mkdir -p images && mkdir -p doc/
artifacts
:
paths
:
-
images/
-
doc/
reports
:
dotenv
:
juggler.env
stages
:
-
config
-
build
-
deploy
env
:
stage
:
config
rules
:
-
if
:
'
$CI_SERVER_HOST
==
"eicweb.phy.anl.gov"'
script
:
-
|
if [[ "x${CI_PIPELINE_SOURCE}" == "xmerge_request_event" || "$CI_COMMIT_BRANCH" == "master" ]]; then
export EIC_DATA_MODEL_VERSION="${CI_COMMIT_REF_NAME}"
echo "EIC_DATA_MODEL_VERSION = ${EIC_DATA_MODEL_VERSION}"
echo "EIC_DATA_MODEL_VERSION=$CI_COMMIT_REF_NAME" >> juggler.env
fi
-
mkdir -p "/scratch/${CI_PROJECT_NAME}_${CI_PIPELINE_ID}" && cp juggler.env /scratch/${CI_PROJECT_NAME}_${CI_PIPELINE_ID}/juggler.env && printenv > /scratch/${CI_PROJECT_NAME}_${CI_PIPELINE_ID}/env.out
artifacts
:
reports
:
dotenv
:
juggler.env
compile
:
stage
:
build
needs
:
-
[
"
env"
]
script
:
-
mkdir build && cd build && cmake ../. -DCMAKE_INSTALL_PREFIX=../install && make -j20 && make install
checks:juggler
:
stage
:
deploy
rules
:
-
if
:
'
$CI_SERVER_HOST
==
"eicweb.phy.anl.gov"'
variables
:
EIC_DATA_MODEL_VERSION
:
"
$EIC_DATA_MODEL_VERSION"
trigger
:
project
:
EIC/juggler
strategy
:
depend
#benchmarks:physics:
# stage
:
deploy
# rules
:
# - if: '$CI_SERVER_HOST == "eicweb.phy.anl.gov"'
# needs:
# - ["compile"]
# trigger:
# project: EIC/benchmarks/physics_benchmarks
# strategy: depend
gen_doxygen_src
:
stage
:
build
rules
:
Loading