Merge branch 'feature/ci_submodule_fetch_mirror' into 'master'

ci: download submodules from mirror, if enabled

See merge request espressif/esp-idf!10477
This commit is contained in:
Ivan Grokhotkov 2020-09-18 22:30:49 +08:00
commit eebc71b16d

View File

@ -24,7 +24,8 @@ class Gitlab(object):
else:
# otherwise try to use config file at local filesystem
config_files = None
self.gitlab_inst = gitlab.Gitlab.from_config(config_files=config_files)
gitlab_id = os.getenv("LOCAL_GITLAB_HTTPS_HOST") # if None, will use the default gitlab server
self.gitlab_inst = gitlab.Gitlab.from_config(gitlab_id=gitlab_id, config_files=config_files)
self.gitlab_inst.auth()
if project_id:
self.project = self.gitlab_inst.projects.get(project_id)