We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 481d9ca commit c2acb2cCopy full SHA for c2acb2c
1 file changed
ci/dockerfile_creator.py
@@ -41,9 +41,10 @@ def add_load_gemc(tag: str) -> str:
41
commands = f'\nRUN echo "module load gemc/{tag}" >> {remote_setup_filename()}\n'
42
return commands
43
44
+# commands += f' && git clone -c advice.detachedHead=false --recurse-submodules --single-branch -b {tag} http://github.com/gemc/src /root/src \\\n'
45
def install_gemc(tag: str) -> str:
46
commands = f'\nRUN source {remote_setup_filename()} \\\n'
- commands += f' && git clone -c advice.detachedHead=false --recurse-submodules --single-branch -b {tag} http://github.com/gemc/src /root/src \\\n'
47
+ commands += f' && git clone http://github.com/gemc/src /root/src \\\n'
48
commands += f' && cd /root/src \\\n'
49
commands += f' && ./ci/build.sh \n'
50
0 commit comments