Skip to content

Commit 2640bc9

Browse files
committed
Actually build RMG in the Docker file.
This got removed recently, presumably by error.
1 parent 165d73d commit 2640bc9

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

Dockerfile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,13 @@ RUN conda clean --all --yes && \
8080
ENV RUNNER_CWD=/rmg
8181
ENV PATH="$RUNNER_CWD/RMG-Py:$PATH"
8282

83-
# 1. Build RMG
84-
# 2. Install and link Julia dependencies for RMS
83+
# Build RMG
84+
RUN make
85+
86+
# Install and link Julia dependencies for RMS
8587
# setting this env variable fixes an issue with Julia precompilation on Windows
8688
ENV JULIA_CPU_TARGET="x86-64,haswell,skylake,broadwell,znver1,znver2,znver3,cascadelake,icelake-client,cooperlake,generic"
87-
RUN julia --version && source install_rms.sh
89+
RUN source install_rms.sh
8890

8991
# RMG-Py should now be installed and ready - trigger precompilation and test run
9092
RUN python rmg.py examples/rmg/minimal/input.py

0 commit comments

Comments
 (0)