Skip to content

Commit

Permalink
Add -tft environments to the ci matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
thebentern committed Feb 8, 2025
1 parent 99e47cf commit 2996a96
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bin/generate_ci_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
outlist.append(section)
else:
outlist.append(section)
# Add the TFT variants if the base variant is selected
elif section.replace("-tft", "") in outlist:
outlist.append(section)
if "board_check" in config[config[c].name]:
if (config[config[c].name]["board_check"] == "true") & (
"check" in options
Expand All @@ -43,4 +46,4 @@
if ("quick" in options) & (len(outlist) > 3):
print(json.dumps(random.sample(outlist, 3)))
else:
print(json.dumps(outlist))
print(json.dumps(outlist))

0 comments on commit 2996a96

Please sign in to comment.