summaryrefslogtreecommitdiff
path: root/.github/workflows/ci_set_matrix.py
diff options
context:
space:
mode:
authorHa Thach <[email protected]>2024-12-05 18:01:16 +0700
committerGitHub <[email protected]>2024-12-05 18:01:16 +0700
commit310b8657f06570362740c4dda89705f694c81538 (patch)
tree9b36abf565b5cd0f8ddfcb3f4532929ec16d74b2 /.github/workflows/ci_set_matrix.py
parenteabf68bd9154672821531c9139118a63076b9e9d (diff)
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
Diffstat (limited to '.github/workflows/ci_set_matrix.py')
-rwxr-xr-x.github/workflows/ci_set_matrix.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/.github/workflows/ci_set_matrix.py b/.github/workflows/ci_set_matrix.py
index 78fcac68a..410508246 100755
--- a/.github/workflows/ci_set_matrix.py
+++ b/.github/workflows/ci_set_matrix.py
@@ -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))