hyStrath
hyStrath copied to clipboard
hyStrath.git branch OF-v2112 not present
I tried to install the dev version but when using the command
git clone https://github.com/hystrath/hyStrath.git --branch OF-v2112 --single-branch && cd hyStrath/
I receive an error message warning: Could not find remote branch OF-v2112 to clone. fatal: Remote branch OF-v2112 not found in upstream origin
It would be cool to have some updates on the current status, as getting v1706 to work on ARM is a pain
I agree. Any updates on whether the v2112 branch will be ready to release soon?
I had made https://github.com/xlxs4/aocs-models/tree/main/dsmc (see Dockerfile) back in the day, which worked just fine, in case it's of any help
I had made https://github.com/xlxs4/aocs-models/tree/main/dsmc (see Dockerfile) back in the day, which worked just fine, in case it's of any help
do you have downloaded source code by any chance?
do you have downloaded source code by any chance?
of what, hyStrath?
I use
- https://sourceforge.net/projects/openfoam/files/v1706/OpenFOAM-v1706.tgz
- https://sourceforge.net/projects/openfoam/files/v1706/ThirdParty-v1706.tgz
to build OpenFOAM, and then just clone the hyStrath repo:
# ...
RUN wget 'https://sourceforge.net/projects/openfoam/files/v1706/OpenFOAM-v1706.tgz' && \
tar -xzf OpenFOAM-v1706.tgz && \
rm -rf OpenFOAM-v1706.tgz && \
wget 'https://sourceforge.net/projects/openfoam/files/v1706/ThirdParty-v1706.tgz' && \
tar -xzf ThirdParty-v1706.tgz && \
rm -rf ThirdParty-v1706.tgz
# ...
COPY install.sh ${WM_PROJECT_USER_DIR}
RUN git clone https://github.com/hystrath/hyStrath.git --branch master --single-branch && \
mv -f install.sh hyStrath/install.sh
# ...
from Dockerfile. The installation script is lightly modified because the original hyStrath one did not work