try to run arm-iar with circleci with new token (#2890)

* try to run arm-iar with circleci with new token
* limit iar ci parallel build to 4 for medium+ and 6 for large
* add hil-hfp to compile and test with IAR
This commit is contained in:
Ha Thach
2024-12-05 18:01:16 +07:00
committed by GitHub
parent eabf68bd91
commit 310b8657f0
6 changed files with 93 additions and 41 deletions

View File

@@ -55,14 +55,6 @@ def set_matrix_json():
for toolchain in toolchain_list:
filtered_families = [family for family, supported_toolchain in family_list.items() if
toolchain in supported_toolchain]
# always add board in hfp.json for arm-iar
if toolchain == 'arm-iar':
with open('test/hil/hfp.json') as f:
hfp_data = json.load(f)
hfp_boards = [f"-b{board['name']}" for board in hfp_data['boards']]
filtered_families = filtered_families + hfp_boards
matrix[toolchain] = filtered_families
print(json.dumps(matrix))