My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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))