Skip to content
Snippets Groups Projects
Commit 34edc852 authored by Amir MOHAMMADI's avatar Amir MOHAMMADI
Browse files

Merge branch 'bobconda-proxy-https' into 'master'

use https version of bobconda proxy

See merge request !226
parents 8a150008 39f1afb8
No related branches found
No related tags found
1 merge request!226use https version of bobconda proxy
Pipeline #51954 passed
...@@ -457,13 +457,13 @@ if __name__ == "__main__": ...@@ -457,13 +457,13 @@ if __name__ == "__main__":
logger.info("(create) %s", condarc) logger.info("(create) %s", condarc)
with open(condarc, "wt") as f: with open(condarc, "wt") as f:
# Replaces https://repo.anaconda.com/pkgs/main by # Replaces https://repo.anaconda.com/pkgs/main by
# http://bobconda.lab.idiap.ch:8000, so it is optimized for # https://bobconda.lab.idiap.ch:8443, so it is optimized for
# a CI build. Notice we consider this script is only executed in this # a CI build. Notice we consider this script is only executed in this
# context. The URL should NOT work outside of Idiap's network. # context. The URL should NOT work outside of Idiap's network.
f.write( f.write(
_BASE_CONDARC.replace( _BASE_CONDARC.replace(
"https://repo.anaconda.com", "https://repo.anaconda.com",
"http://bobconda.lab.idiap.ch:8000", "https://bobconda.lab.idiap.ch:8443",
) )
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment