Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
Reference Detector
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
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab 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
Reference Detector
Merge requests
!88
Fix the pipeline trigger for web and webide
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Fix the pipeline trigger for web and webide
ci_fix
into
master
Overview
0
Commits
1
Pipelines
3
Changes
1
Merged
Fix the pipeline trigger for web and webide
Whitney Armstrong
requested to merge
ci_fix
into
master
May 19, 2021
Overview
0
Commits
1
Pipelines
3
Changes
1
0
0
Merge request reports
Compare
master
version 1
bed5d30d
May 19, 2021
master (base)
and
latest version
latest version
5af8f344
1 commit,
May 20, 2021
version 1
bed5d30d
1 commit,
May 19, 2021
1 file
+
1
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
1
−
3
View file @ 5af8f344
Edit in single-file editor
Open in Web IDE
Show full file
@@ -40,14 +40,12 @@ stages:
common:setup
:
stage
:
config
rules
:
-
if
:
'
$CI_SERVER_HOST
==
"eicweb.phy.anl.gov"'
before_script
:
-
git clone https://eicweb.phy.anl.gov/EIC/benchmarks/common_bench.git setup
script
:
-
export JUGGLER_DETECTOR="reference_detector"
-
|
if [[ "
x
${CI_PIPELINE_SOURCE}" == "
x
merge_request_event" || "$CI_COMMIT_BRANCH" == "master" ]]; then
if [[ "
${CI_PIPELINE_SOURCE}" == "web" || "${CI_PIPELINE_SOURCE}" == "webide" || "
${CI_PIPELINE_SOURCE}" == "merge_request_event" || "$CI_COMMIT_BRANCH" == "master" ]]; then
export JUGGLER_DETECTOR_VERSION="${CI_COMMIT_REF_NAME}"
echo "BEAMLINE_CONFIG = ${BEAMLINE_CONFIG}"
echo "BEAMLINE_CONFIG_VERSION = ${BEAMLINE_CONFIG_VERSION}"
Loading