123456789101112131415 |
- """
- Extract the builds used in Github CI, so that we can run them locally
- """
- import yaml
- yaml_file = '.github/workflows/ci-build-tests.yml'
- with open(yaml_file) as f:
- github_configuration = yaml.safe_load(f)
- print(' '.join(github_configuration['jobs']['test_builds']['strategy']['matrix']['test-platform']))
|