Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
detector_benchmarks
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
benchmarks
detector_benchmarks
Merge requests
!27
Resolve "Factorize common benchmark code."
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Resolve "Factorize common benchmark code."
15-factorize-common-benchmark-code
into
master
Overview
0
Commits
16
Pipelines
0
Changes
1
Merged
Resolve "Factorize common benchmark code."
Whitney Armstrong
requested to merge
15-factorize-common-benchmark-code
into
master
May 2, 2021
Overview
0
Commits
16
Pipelines
0
Changes
1
Closes
#15 (closed)
Edited
May 2, 2021
by
Whitney Armstrong
0
0
Merge request reports
Compare
master
version 13
272aa3de
May 2, 2021
version 12
f6b6cb2d
May 2, 2021
version 11
c7bde021
May 2, 2021
version 10
d62c3edf
May 2, 2021
version 9
b4f409e4
May 2, 2021
version 8
aefc46e3
May 2, 2021
version 7
52f9cbbe
May 2, 2021
version 6
aa66032e
May 2, 2021
version 5
ac15d444
May 2, 2021
version 4
a85d8b5c
May 2, 2021
version 3
6a226006
May 2, 2021
version 2
d8a857a2
May 2, 2021
version 1
efb81f98
May 2, 2021
master (base)
and
latest version
latest version
c554a12e
16 commits,
May 2, 2021
version 13
272aa3de
15 commits,
May 2, 2021
version 12
f6b6cb2d
14 commits,
May 2, 2021
version 11
c7bde021
13 commits,
May 2, 2021
version 10
d62c3edf
12 commits,
May 2, 2021
version 9
b4f409e4
11 commits,
May 2, 2021
version 8
aefc46e3
10 commits,
May 2, 2021
version 7
52f9cbbe
9 commits,
May 2, 2021
version 6
aa66032e
8 commits,
May 2, 2021
version 5
ac15d444
7 commits,
May 2, 2021
version 4
a85d8b5c
6 commits,
May 2, 2021
version 3
6a226006
5 commits,
May 2, 2021
version 2
d8a857a2
3 commits,
May 2, 2021
version 1
efb81f98
1 commit,
May 2, 2021
1 file
+
22
−
39
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
22
−
39
View file @ c554a12e
Edit in single-file editor
Open in Web IDE
Show full file
image
:
eicweb.phy.anl.gov:4567/eic/juggler/juggler:$JUGGLER_TAG
default
:
before_script
:
-
git clone https://eicweb.phy.anl.gov/EIC/detectors/topside.git
&& mkdir topside/build
&& cd topside/build
&& cmake ../. -DCMAKE_CXX_STANDARD=17 -DCMAKE_INSTALL_PREFIX=/usr/local
&& make -j20 install
&& cd ../..
|| exit
1
artifacts
:
expire_in
:
72 hours
paths
:
-
.local/detector
-
.local/lib
-
.local/bin
-
.local/include
-
.local/share
-
results
-
config
@@ -26,54 +21,42 @@ stages:
-
collect
-
deploy
env
:
common:setup
:
stage
:
config
script
:
-
./util/print_env.sh
-
mkdir -p /scratch/${CI_PROJECT_NAME}_${CI_PIPELINE_ID}
-
mkdir -p /scratch/${CI_PROJECT_NAME}_${CI_PIPELINE_ID}/sim_output
-
git clone https://eicweb.phy.anl.gov/EIC/benchmarks/common_bench.git setup
-
source setup/bin/env.sh && ./setup/bin/install_common.sh
detector
:
common:
detector
:
stage
:
initialize
needs
:
[
"
env"
]
timeout
:
1 hours
cache
:
key
:
files
:
-
options/env.sh
-
util/build_detector.sh
prefix
:
"
$CI_COMMIT_REF_SLUG"
paths
:
-
.local/detector
-
.local/lib
needs
:
[
"
common:setup"
]
script
:
-
./util/print_env
.sh
-
./util/build_detector.sh
-
./util/print_env.sh
-
source .local/bin/env.sh && build_detector
.sh
-
mkdir -p /scratch/${CI_PROJECT_NAME}_${CI_PIPELINE_ID}
-
mkdir -p /scratch/${CI_PROJECT_NAME}_${CI_PIPELINE_ID}/sim_output
-
mkdir -p results
-
mkdir -p config
-
print_env.sh
get_data
:
stage
:
data_init
needs
:
[
"
detector"
]
needs
:
[
"
common:
detector"
]
script
:
-
source
options
/env.sh
-
ln -s ${LOCAL_DATA_PATH}/sim_output sim_output
-
ln -s ${LOCAL_DATA_PATH}/datasets/data data
-
source
.local/bin
/env.sh
-
ln -s
"
${LOCAL_DATA_PATH}/sim_output
"
sim_output
-
ln -s
"
${LOCAL_DATA_PATH}/datasets/data
"
data
-
cd ${LOCAL_DATA_PATH} && git clone --depth=1 https://eicweb.phy.anl.gov/EIC/datasets.git datasets
.det_benchmark
:
image
:
eicweb.phy.anl.gov:4567/eic/juggler/juggler:$JUGGLER_TAG
needs
:
-
[
"
get_data"
]
-
[
"
get_data"
,
"
common:detector"
]
before_script
:
-
source options/env.sh
-
ln -s ${LOCAL_DATA_PATH}/sim_output sim_output
-
ln -s ${LOCAL_DATA_PATH}/datasets/data data
artifacts
:
expire_in
:
20 weeks
paths
:
-
results/
-
source .local/bin/env.sh
-
ls -lrtha
-
ln -s "${LOCAL_DATA_PATH}/sim_output" sim_output
-
ln -s "${LOCAL_DATA_PATH}/datasets/data" data
-
ls -lrtha
include
:
Loading