Skip to content

Commit

Permalink
ci(stm32variant): add Z to the package regex
Browse files Browse the repository at this point in the history
Signed-off-by: Frederic Pillon <[email protected]>
  • Loading branch information
fpistm committed Jul 5, 2024
1 parent 08fbeee commit aaa8487
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CI/update/stm32variant.py
Original file line number Diff line number Diff line change
Expand Up @@ -2669,7 +2669,7 @@ def manage_repo():
# Clean temporary dir
deleteFolder(tmp_dir)

package_regex = re.compile(r"[\w][\w]([ANPQX])?$")
package_regex = re.compile(r"[\w][\w]([ANPQSXZ])?$")
flash_group_regex = re.compile(r"(.*)\((.*)\)(.*)")

for mcu_file in mcu_list:
Expand Down Expand Up @@ -2755,7 +2755,7 @@ def manage_repo():
update_regex = re.compile(r"defined\(ARDUINO_GENERIC_.+\)")
board_entry_regex = re.compile(r"(Gen.+\..+variant=STM32.+xx/)\S+")
# P T E
mcu_PE_regex = re.compile(r"([\w])([\w])([ANPQSX])?$")
mcu_PE_regex = re.compile(r"([\w])([\w])([ANPQSXZ])?$")
aggregate_dir()

# Clean temporary dir
Expand Down

0 comments on commit aaa8487

Please sign in to comment.