1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-26 05:17:17 +00:00
MarlinFirmware/get_test_targets.py
Scott Lahteine 06a6708220 🧑‍💻 Update Python indentation
2023-04-15 22:27:40 -05:00

13 lines
350 B
Python
Executable File

#!/usr/bin/env python
"""
Extract the builds used in Github CI, so that we can run them locally
"""
import yaml
with open('.github/workflows/test-builds.yml') as f:
github_configuration = yaml.safe_load(f)
test_platforms = github_configuration\
['jobs']['test_builds']['strategy']['matrix']['test-platform']
print(' '.join(test_platforms))