Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Install and initialize Git LFS in testing/Dockerfile #614

Merged
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Released on xx/xx/xxxx.
- Allow simulations and forecast to work across the end of the year to the next year. This is for [#239](https://github.com/ibpsa/project1-boptest/issues/239).
- Pin base Docker image to ``linux/x86_64`` platform. This is for [#608](https://github.com/ibpsa/project1-boptest/issues/608).
- Correct typo in design documentation about connecting inputs to overwrite blocks in wrapper model. This is for [#601](https://github.com/ibpsa/project1-boptest/issues/601).
- Correct Git LFS configuration in the ``testing/Dockerfile`` image used in tests and compilation. This should allow Spawn of EnergyPlus emulators to be compiled with the default compilation pipeline. This is for [#613](https://github.com/ibpsa/project1-boptest/issues/613).
dhblum marked this conversation as resolved.
Show resolved Hide resolved

## BOPTEST v0.5.0

Expand Down
2 changes: 2 additions & 0 deletions testing/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ USER root

RUN apt-get update && \
apt-get install -y git && \
apt-get install -y git-lfs && \
apt-get install -y sudo

USER developer
Expand All @@ -14,6 +15,7 @@ WORKDIR $HOME

RUN mkdir $HOME/MODELICAPATH && mkdir git && \
cd git && \
git lfs install && \
git clone https://github.com/ibpsa/modelica-ibpsa.git && cd modelica-ibpsa && git checkout a8b77f6d2820c52a63cd5964db6db9913a5f669d && cd .. && \
git clone https://github.com/open-ideas/IDEAS.git && \
git clone https://github.com/lbl-srg/modelica-buildings.git && \
Expand Down