My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

get_test_targets.py 350B

123456789101112
  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
  6. with open('.github/workflows/test-builds.yml') as f:
  7. github_configuration = yaml.safe_load(f)
  8. test_platforms = github_configuration\
  9. ['jobs']['test_builds']['strategy']['matrix']['test-platform']
  10. print(' '.join(test_platforms))