My Marlin configs for Fabrikator Mini and CTC i3 Pro B
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

test-builds.yml 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. #
  2. # test-builds.yml
  3. # Do test builds to catch compile errors
  4. #
  5. name: CI
  6. on:
  7. pull_request:
  8. branches:
  9. - bugfix-2.0.x
  10. paths-ignore:
  11. - config/**
  12. - data/**
  13. - docs/**
  14. - '**/*.md'
  15. push:
  16. branches:
  17. - bugfix-2.0.x
  18. paths-ignore:
  19. - config/**
  20. - data/**
  21. - docs/**
  22. - '**/*.md'
  23. jobs:
  24. test_builds:
  25. name: Run All Tests
  26. if: github.repository == 'MarlinFirmware/Marlin'
  27. runs-on: ubuntu-latest
  28. strategy:
  29. matrix:
  30. test-platform:
  31. # Base Environments
  32. - DUE
  33. - DUE_archim
  34. - esp32
  35. - linux_native
  36. - mega2560
  37. - at90usb1286_dfu
  38. - teensy31
  39. - teensy35
  40. - teensy41
  41. - SAMD51_grandcentral_m4
  42. # Extended AVR Environments
  43. - FYSETC_F6
  44. - mega1280
  45. - rambo
  46. - sanguino1284p
  47. - sanguino644p
  48. # STM32F1 (Maple) Environments
  49. - STM32F103RC_btt
  50. - STM32F103RC_btt_USB
  51. - STM32F103RE_btt
  52. - STM32F103RE_btt_USB
  53. - STM32F103RC_fysetc
  54. - STM32F103RC_meeb
  55. - jgaurora_a5s_a1
  56. - STM32F103VE_longer
  57. - mks_robin
  58. - mks_robin_lite
  59. - mks_robin_pro
  60. - STM32F103RET6_creality
  61. - mks_robin_nano35
  62. # STM32 (ST) Environments
  63. - STM32F103RC_btt_stm32
  64. - STM32F407VE_black
  65. - STM32F401VE_STEVAL
  66. - BIGTREE_BTT002
  67. - BIGTREE_SKR_PRO
  68. - BIGTREE_GTR_V1_0
  69. - mks_robin_stm32
  70. - ARMED
  71. - FYSETC_S6
  72. - STM32F070CB_malyan
  73. - STM32F070RB_malyan
  74. - malyan_M300
  75. - FLYF407ZG
  76. - rumba32
  77. - LERDGEX
  78. - LERDGEK
  79. - mks_robin_nano35_stm32
  80. - NUCLEO_F767ZI
  81. - REMRAM_V1
  82. - BTT_SKR_SE_BX
  83. - chitu_f103
  84. # Put lengthy tests last
  85. - LPC1768
  86. - LPC1769
  87. # Non-working environment tests
  88. #- at90usb1286_cdc
  89. #- STM32F103CB_malyan
  90. #- STM32F103RE
  91. #- mks_robin_mini
  92. steps:
  93. - name: Select Python 3.7
  94. uses: actions/setup-python@v1
  95. with:
  96. python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
  97. architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
  98. - name: Install PlatformIO
  99. run: |
  100. pip install -U https://github.com/platformio/platformio-core/archive/develop.zip
  101. platformio update
  102. - name: Check out the PR
  103. uses: actions/checkout@v2
  104. - name: Run ${{ matrix.test-platform }} Tests
  105. run: |
  106. make tests-single-ci TEST_TARGET=${{ matrix.test-platform }}