🔨 [2.0.9.7] Use older chitu_crypt.py
[Marlin.git] / get_test_targets.py
bloba38e3a594adf1935e0f9eda235e028b3521c9eb2
1 #!/usr/bin/env python
2 """
3 Extract the builds used in Github CI, so that we can run them locally
4 """
5 import yaml
8 with open('.github/workflows/test-builds.yml') as f:
9 github_configuration = yaml.safe_load(f)
10 test_platforms = github_configuration\
11 ['jobs']['test_builds']['strategy']['matrix']['test-platform']
12 print(' '.join(test_platforms))