We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 62cd878 + 30f3cf3 commit a8b69f2Copy full SHA for a8b69f2
tools/ci_set_matrix.py
@@ -88,7 +88,12 @@ def set_boards_to_build(build_all):
88
arch_to_boards = {"arm": [], "riscv": [], "espressif": []}
89
for board in boards_to_build:
90
print(" ", board)
91
- arch = PORT_TO_ARCH[board_to_port[board]]
+ port = board_to_port.get(board)
92
+ # A board can appear due to its _deletion_ (rare)
93
+ # if this happens it's not in `board_to_port`.
94
+ if not port:
95
+ continue
96
+ arch = PORT_TO_ARCH[port]
97
arch_to_boards[arch].append(board)
98
99
# Set the step outputs for each architecture
0 commit comments