Skip to content
Snippets Groups Projects
Commit 5a20803d authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

feat: build EICrecon on top of dev base layer

parent 97e353f1
No related branches found
No related tags found
1 merge request!471feat: build EICrecon on top of dev base layer
......@@ -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]
......
......@@ -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 " - Juggler: ${JUGGLER_VERSION}-$(git rev-parse HEAD)" \
&& echo " - juggler: ${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"
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment