From 659413ea0847270dd749b7cf7f9c038b9a8e4a6c Mon Sep 17 00:00:00 2001
From: Amir MOHAMMADI <amir.mohammadi@idiap.ch>
Date: Mon, 14 Jun 2021 16:02:24 +0200
Subject: [PATCH] [proxy] Use proxy for other channels, i.e., conda-forge, too

---
 bob/devtools/bootstrap.py | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/bob/devtools/bootstrap.py b/bob/devtools/bootstrap.py
index 29467407..de2e4f3a 100644
--- a/bob/devtools/bootstrap.py
+++ b/bob/devtools/bootstrap.py
@@ -22,6 +22,7 @@ conda_build: #!final
   pkg_format: '2'
 default_channels: #!final
   - https://repo.anaconda.com/pkgs/main
+channel_alias: https://conda.anaconda.org #!final
 quiet: true #!final
 remote_connect_timeout_secs: 120.0 #!final
 remote_max_retries: 50 #!final
@@ -461,14 +462,17 @@ if __name__ == "__main__":
     condarc = os.path.join(args.conda_root, "condarc")
     logger.info("(create) %s", condarc)
     with open(condarc, "wt") as f:
-        # Replaces https://repo.anaconda.com/pkgs/main by
-        # https://bobconda.lab.idiap.ch:8443, 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.
+        # Replaces https://repo.anaconda.com and https://conda.anaconda.org by our
+        # mirrors, 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",
                 "https://bobconda.lab.idiap.ch:8443",
+            ).replace(
+                "https://conda.anaconda.org",
+                "https://bobconda.lab.idiap.ch:9443",
             )
         )
 
-- 
GitLab