Skip to content
Snippets Groups Projects
Commit 49faef9c authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[bootstrap] Use local defaults channel mirror

parent 0540860e
No related branches found
No related tags found
1 merge request!105[bootstrap] Use local defaults channel mirror
Pipeline #33160 passed
This commit is part of merge request !105. Comments created here will be created in the context of that merge request.
......@@ -438,7 +438,14 @@ if __name__ == "__main__":
condarc = os.path.join(args.conda_root, "condarc")
logger.info("(create) %s", condarc)
with open(condarc, "wt") as f:
f.write(_BASE_CONDARC)
  • What if I want to build this outside of Idiap network (cases of debugging). So far, i patched this script

  • Author Owner

    The bootstrap script is meant for our CI only. You may need to change the script itself to be more flexible.

  • Please register or sign in to reply
# Replaces https://repo.anaconda.com/pkgs/main by
# http://www.idiap.ch/software/bob/defaults with so it is optimized for
# a CI build. Notice we consider this script is only executed in this
# context. The URL should NOT work outside of Idiap's network.
f.write(_BASE_CONDARC.replace(
'https://repo.anaconda.com/pkgs/main',
'http://www.idiap.ch/defaults',
))
conda_version = "4"
conda_build_version = "3.16"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment