Searched refs:job_id (Results 1 – 2 of 2) sorted by relevance
/hal_espressif-3.6.0/tools/ci/python_packages/ttfw_idf/ |
D | IDFApp.py | 148 def _get_flash_arg_file(self, base_path, job_id): # type: (str, str) -> str argument 154 self.gitlab_inst.download_artifact(job_id, [flash_arg_file], self.dest_root_path) 157 …def _download_binary_files(self, base_path, job_id, flash_arg_file): # type: (str, str, str) -> N… argument 168 self.gitlab_inst.download_artifact(job_id, artifact_files, self.dest_root_path) 170 def _download_sdkconfig_file(self, base_path, job_id): # type: (str, str) -> None argument 171 …self.gitlab_inst.download_artifact(job_id, [os.path.join(os.path.dirname(base_path), 'sdkconfig')], 178 job_id = self.artifact_info['ci_job_id'] 180 flash_arg_file = self._get_flash_arg_file(base_path, job_id) 183 self._download_binary_files(base_path, job_id, flash_arg_file) 186 self._download_sdkconfig_file(base_path, job_id) [all …]
|
/hal_espressif-3.6.0/tools/ci/python_packages/ |
D | gitlab_api.py | 99 def download_artifacts(self, job_id: int, destination: str) -> None: 106 job = self.project.jobs.get(job_id) 115 …def download_artifact(self, job_id: int, artifact_path: str, destination: Optional[str] = None) ->… 124 job = self.project.jobs.get(job_id) 132 print("Failed to download '{}' from job {}".format(a_path, job_id)) 216 gitlab_inst.download_artifacts(args.job_id, args.destination) 218 gitlab_inst.download_artifact(args.job_id, args.artifact_path, args.destination)
|