2017-10-10 02:44:55 +00:00
|
|
|
# Copyright 2015-2017 Espressif Systems (Shanghai) PTE LTD
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http:#www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
"""
|
|
|
|
Command line tool to assign example tests to CI test jobs.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# TODO: Need to handle running examples on different chips
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import argparse
|
2019-11-27 03:14:29 +00:00
|
|
|
import json
|
2017-10-10 02:44:55 +00:00
|
|
|
|
2019-11-27 03:21:33 +00:00
|
|
|
import gitlab_api
|
|
|
|
from tiny_test_fw.Utility import CIAssignTest
|
2018-12-04 12:46:48 +00:00
|
|
|
|
2018-05-15 03:51:56 +00:00
|
|
|
|
2019-11-27 03:14:29 +00:00
|
|
|
EXAMPLE_BUILD_JOB_NAMES = ["build_examples_cmake_esp32", "build_examples_cmake_esp32s2"]
|
|
|
|
IDF_PATH_FROM_ENV = os.getenv("IDF_PATH")
|
|
|
|
if IDF_PATH_FROM_ENV:
|
|
|
|
ARTIFACT_INDEX_FILE = os.path.join(IDF_PATH_FROM_ENV,
|
|
|
|
"build_examples", "artifact_index.json")
|
|
|
|
else:
|
|
|
|
ARTIFACT_INDEX_FILE = "artifact_index.json"
|
|
|
|
|
|
|
|
|
2019-11-27 03:21:33 +00:00
|
|
|
class ExampleGroup(CIAssignTest.Group):
|
2018-05-15 03:51:56 +00:00
|
|
|
SORT_KEYS = CI_JOB_MATCH_KEYS = ["env_tag", "chip"]
|
2017-10-10 02:44:55 +00:00
|
|
|
|
|
|
|
|
2019-11-27 03:21:33 +00:00
|
|
|
class CIExampleAssignTest(CIAssignTest.AssignTest):
|
2017-10-10 02:44:55 +00:00
|
|
|
CI_TEST_JOB_PATTERN = re.compile(r"^example_test_.+")
|
|
|
|
|
|
|
|
|
2019-11-27 03:14:29 +00:00
|
|
|
def create_artifact_index_file(project_id=None, pipeline_id=None):
|
|
|
|
if project_id is None:
|
|
|
|
project_id = os.getenv("CI_PROJECT_ID")
|
|
|
|
if pipeline_id is None:
|
|
|
|
pipeline_id = os.getenv("CI_PIPELINE_ID")
|
|
|
|
gitlab_inst = gitlab_api.Gitlab(project_id)
|
|
|
|
artifact_index_list = []
|
2019-11-27 03:21:33 +00:00
|
|
|
|
2019-11-27 03:14:29 +00:00
|
|
|
def format_build_log_path():
|
|
|
|
return "build_examples/list_job_{}.json".format(job_info["parallel_num"])
|
2019-11-27 03:21:33 +00:00
|
|
|
|
2019-11-27 03:14:29 +00:00
|
|
|
for build_job_name in EXAMPLE_BUILD_JOB_NAMES:
|
|
|
|
job_info_list = gitlab_inst.find_job_id(build_job_name, pipeline_id=pipeline_id)
|
|
|
|
for job_info in job_info_list:
|
|
|
|
raw_data = gitlab_inst.download_artifact(job_info["id"], [format_build_log_path()])[0]
|
|
|
|
build_info_list = [json.loads(line) for line in raw_data.splitlines()]
|
|
|
|
for build_info in build_info_list:
|
|
|
|
build_info["ci_job_id"] = job_info["id"]
|
|
|
|
artifact_index_list.append(build_info)
|
|
|
|
try:
|
|
|
|
os.makedirs(os.path.dirname(ARTIFACT_INDEX_FILE))
|
|
|
|
except OSError:
|
|
|
|
# already created
|
2019-11-27 03:21:33 +00:00
|
|
|
pass
|
|
|
|
|
2019-11-27 03:14:29 +00:00
|
|
|
with open(ARTIFACT_INDEX_FILE, "w") as f:
|
|
|
|
json.dump(artifact_index_list, f)
|
|
|
|
|
2019-11-27 03:21:33 +00:00
|
|
|
|
2017-10-10 02:44:55 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument("test_case",
|
|
|
|
help="test case folder or file")
|
|
|
|
parser.add_argument("ci_config_file",
|
|
|
|
help="gitlab ci config file")
|
|
|
|
parser.add_argument("output_path",
|
|
|
|
help="output path of config files")
|
2019-11-27 03:14:29 +00:00
|
|
|
parser.add_argument("--pipeline_id", "-p", type=int, default=None,
|
|
|
|
help="pipeline_id")
|
2017-10-10 02:44:55 +00:00
|
|
|
args = parser.parse_args()
|
|
|
|
|
2018-05-15 03:51:56 +00:00
|
|
|
assign_test = CIExampleAssignTest(args.test_case, args.ci_config_file, case_group=ExampleGroup)
|
2017-10-10 02:44:55 +00:00
|
|
|
assign_test.assign_cases()
|
|
|
|
assign_test.output_configs(args.output_path)
|
2019-11-27 03:14:29 +00:00
|
|
|
create_artifact_index_file()
|