Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
eic_container
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
Container Registry
Model registry
Operate
Environments
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
containers
eic_container
Commits
5a20803d
Commit
5a20803d
authored
2 years ago
by
Wouter Deconinck
Browse files
Options
Downloads
Patches
Plain Diff
feat: build EICrecon on top of dev base layer
parent
97e353f1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!471
feat: build EICrecon on top of dev base layer
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+2
-0
2 additions, 0 deletions
.gitlab-ci.yml
containers/jug/xl.Dockerfile
+23
-2
23 additions, 2 deletions
containers/jug/xl.Dockerfile
spack.yaml
+0
-1
0 additions, 1 deletion
spack.yaml
with
25 additions
and
3 deletions
.gitlab-ci.yml
+
2
−
0
View file @
5a20803d
...
...
@@ -4,6 +4,7 @@ variables:
## Application versions used for the main release
## note: nightly builds will always use the master/main branch
JUGGLER_VERSION
:
"
v9.2.0"
EICRECON_VERSION
:
"
v0.5.1"
## Spack organization and repository, e.g. spack/spack
SPACK_ORGREPO
:
"
spack/spack"
...
...
@@ -347,6 +348,7 @@ jug_xl:default:
--build-arg BASE_IMAGE=${BASE_IMAGE}
--build-arg INTERNAL_TAG=${INTERNAL_TAG}
--build-arg JUGGLER_VERSION=${JUGGLER_VERSION}
--build-arg EICRECON_VERSION=${EICRECON_VERSION}
--build-arg JUG_VERSION=${INTERNAL_TAG}-$(git rev-parse HEAD)
containers/jug
-
!reference
[
.build
,
script
]
...
...
This diff is collapsed.
Click to expand it.
containers/jug/xl.Dockerfile
+
23
−
2
View file @
5a20803d
...
...
@@ -11,6 +11,7 @@ FROM ${DOCKER_REGISTRY}${BASE_IMAGE}:${INTERNAL_TAG}
ARG
EICWEB="https://eicweb.phy.anl.gov/api/v4/projects"
ARG
JUGGLER_VERSION="main"
ARG
EICRECON_VERSION="main"
## version will automatically bust cache for nightly, as it includes
## the date
...
...
@@ -25,14 +26,34 @@ RUN cd /tmp
&&
git clone
-b
${
JUGGLER_VERSION
}
--depth
1
\
https://eicweb.phy.anl.gov/EIC/juggler.git
\
&&
cmake
-B
build
-S
juggler
\
-DCMAKE_CXX_STANDARD
=
17
-DCMAKE_INSTALL_PREFIX
=
/usr/local
\
-DCMAKE_CXX_STANDARD
=
17
\
-DCMAKE_INSTALL_PREFIX
=
/usr/local
\
-DCMAKE_BUILD_TYPE
=
Release
\
&&
cmake
--build
build
-j12
--
install
\
&&
pushd
juggler
\
&&
echo
" -
J
uggler:
${
JUGGLER_VERSION
}
-
$(
git rev-parse HEAD
)
"
\
&&
echo
" -
j
uggler:
${
JUGGLER_VERSION
}
-
$(
git rev-parse HEAD
)
"
\
>>
/etc/jug_info
\
&&
popd
\
&&
rm
-rf
build juggler
ADD
https://api.github.com/repos/eic/eicrecon/commits/${EICRECON_VERSION} /tmp/eicrecon.json
RUN
cd
/tmp
\
&&
echo
"INSTALLING EICRECON"
\
&&
git clone
-b
${
EICRECON_VERSION
}
--depth
1
\
https://github.com/eic/eicrecon.git
\
&&
cmake
-B
build
-S
eicrecon
\
-DCMAKE_CXX_STANDARD
=
17
\
-DCMAKE_INSTALL_PREFIX
=
/usr/local
\
-DCMAKE_BUILD_TYPE
=
Release
\
&&
cmake
--build
build
-j12
--
install
\
&&
pushd
eicrecon
\
&&
echo
" - eicrecon:
${
EICRECON_VERSION
}
-
$(
git rev-parse HEAD
)
"
\
>>
/etc/jug_info
\
&&
echo
"export JANA_PLUGIN_PATH=/usr/local/lib/EICrecon/plugins"
\
>
/etc/profile.d/z12_eicrecon.sh
\
&&
popd
\
&&
rm
-rf
build eicrecon
## Install benchmarks into the container
ARG
BENCHMARK_COM_VERSION="master"
ARG
BENCHMARK_DET_VERSION="master"
...
...
This diff is collapsed.
Click to expand it.
spack.yaml
+
0
−
1
View file @
5a20803d
...
...
@@ -16,7 +16,6 @@ spack:
-
edm4eic@1.2.2 cxxstd=17
-
edm4hep@0.7 cxxstd=17
-
eic-smear@1.1.10
-
eicrecon@0.5.1
-
eigen@3.4.0
-
emacs
-
fastjet@3.4.0
...
...
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