remove old marlin

This commit is contained in:
Игорь Брылёв 2025-01-17 19:41:36 +03:00
parent ae07549e1b
commit 815ee1fb17
3304 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#!/usr/bin/env python
"""
Extract the builds used in Github CI, so that we can run them locally
"""
import yaml
# Set the yaml file to parse
yaml_file = '.github/workflows/ci-build-tests.yml'
# Parse the yaml file, and load it into a dictionary (github_configuration)
with open(yaml_file) as f:
github_configuration = yaml.safe_load(f)
# Print out the test platforms
print(' '.join(github_configuration['jobs']['test_builds']['strategy']['matrix']['test-platform']))