hyStrath icon indicating copy to clipboard operation
hyStrath copied to clipboard

hyStrath.git branch OF-v2112 not present

Open karamiag opened this issue 2 years ago • 5 comments

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

Immagine 2023-06-07 161851

karamiag avatar Jun 07 '23 14:06 karamiag

It would be cool to have some updates on the current status, as getting v1706 to work on ARM is a pain

xlxs4 avatar Jun 19 '23 13:06 xlxs4

I agree. Any updates on whether the v2112 branch will be ready to release soon?

jarrad301 avatar May 20 '24 02:05 jarrad301

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

xlxs4 avatar May 20 '24 11:05 xlxs4

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?

MadanBK1 avatar Jun 04 '24 02:06 MadanBK1

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

xlxs4 avatar Jun 04 '24 07:06 xlxs4