Skip to content
Snippets Groups Projects
Commit 1b72a3b2 authored by Whitney Armstrong's avatar Whitney Armstrong
Browse files

New acts upstream repo at github

- explicit build options
parent d1e3ec49
No related branches found
No related tags found
No related merge requests found
...@@ -12,14 +12,19 @@ ENV PYTHONPATH="/usr/local/lib:${PYTHONPATH}" ...@@ -12,14 +12,19 @@ ENV PYTHONPATH="/usr/local/lib:${PYTHONPATH}"
RUN cd /tmp \ RUN cd /tmp \
&& git clone https://gitlab.cern.ch/acts/acts-core.git \ && git clone https://github.com/acts-project/acts.git \
&& source /usr/local/bin/thisroot.sh \ && source /usr/local/bin/thisroot.sh \
&& source /usr/local/bin/geant4.sh \ && source /usr/local/bin/geant4.sh \
&& source /usr/local/bin/thisdd4hep.sh \ && source /usr/local/bin/thisdd4hep.sh \
&& mkdir -p acts-core/build && cd acts-core/build \ && mkdir -p acts/build && cd acts/build \
&& cmake ../. -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_CXX_STANDARD=17 -DACTS_BUILD_DD4HEP_PLUGIN=ON \ && cmake ../. -DCMAKE_INSTALL_PREFIX=/usr/local \
-DCMAKE_CXX_STANDARD=17 \
-DACTS_BUILD_DD4HEP_PLUGIN=ON \
-DACTS_BUILD_TGEO_PLUGIN=ON \
-DACTS_BUILD_IDENTIFICATION_PLUGIN=ON \
-DACTS_BUILD_DIGITIZATION_PLUGIN=ON \
&& make -j30 && make -j4 install \ && make -j30 && make -j4 install \
&& cd /tmp && rm -rf /tmp/acts-core && cd /tmp && rm -rf /tmp/acts
RUN cd /tmp \ RUN cd /tmp \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment