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.

test-builds.yml 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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.1.x
  10. paths-ignore:
  11. - config/**
  12. - data/**
  13. - docs/**
  14. - '**/*.md'
  15. push:
  16. branches:
  17. - bugfix-2.1.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. - PANDA_PI_V29
  43. # Extended AVR Environments
  44. - FYSETC_F6
  45. - mega1280
  46. - rambo
  47. - sanguino1284p
  48. - sanguino644p
  49. # STM32F1 (Maple) Environments
  50. #- STM32F103RC_btt_maple
  51. - STM32F103RC_btt_USB_maple
  52. - STM32F103RC_fysetc_maple
  53. - STM32F103RC_meeb_maple
  54. - jgaurora_a5s_a1_maple
  55. - STM32F103VE_longer_maple
  56. #- mks_robin_maple
  57. - mks_robin_lite_maple
  58. - mks_robin_pro_maple
  59. #- mks_robin_nano_v1v2_maple
  60. #- STM32F103RE_creality_maple
  61. - STM32F103VE_ZM3E4V2_USB_maple
  62. # STM32 (ST) Environments
  63. - STM32F103RC_btt
  64. #- STM32F103RC_btt_USB
  65. - STM32F103RE_btt
  66. - STM32F103RE_btt_USB
  67. - STM32F103RE_creality
  68. - STM32F401RC_creality
  69. - STM32F103VE_longer
  70. - STM32F407VE_black
  71. - BIGTREE_BTT002
  72. - BIGTREE_SKR_PRO
  73. - BIGTREE_GTR_V1_0
  74. - mks_robin
  75. - ARMED
  76. - FYSETC_S6
  77. - STM32F070CB_malyan
  78. - STM32F070RB_malyan
  79. - malyan_M300
  80. - FLYF407ZG
  81. - rumba32
  82. - LERDGEX
  83. - LERDGEK
  84. - mks_robin_nano_v1v2
  85. #- mks_robin_nano_v1v2_usbmod
  86. #- mks_robin_nano_v1_3_f4_usbmod
  87. - NUCLEO_F767ZI
  88. - REMRAM_V1
  89. - BTT_SKR_SE_BX
  90. - chitu_f103
  91. - Opulo_Lumen_REV3
  92. # ESP32 environments
  93. - mks_tinybee
  94. # Put lengthy tests last
  95. - LPC1768
  96. - LPC1769
  97. # Non-working environment tests
  98. #- at90usb1286_cdc
  99. #- STM32F103CB_malyan
  100. #- STM32F103RE
  101. #- mks_robin_mini
  102. steps:
  103. - name: Check out the PR
  104. uses: actions/checkout@v3
  105. - name: Cache pip
  106. uses: actions/cache@v3
  107. with:
  108. path: ~/.cache/pip
  109. key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
  110. restore-keys: |
  111. ${{ runner.os }}-pip-
  112. - name: Cache PlatformIO
  113. uses: actions/cache@v3
  114. with:
  115. path: ~/.platformio
  116. key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
  117. - name: Select Python 3.7
  118. uses: actions/setup-python@v3
  119. with:
  120. python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
  121. architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
  122. - name: Install PlatformIO
  123. run: |
  124. pip install -U platformio
  125. pio upgrade --dev
  126. pio pkg update --global
  127. - name: Run ${{ matrix.test-platform }} Tests
  128. run: |
  129. make tests-single-ci TEST_TARGET=${{ matrix.test-platform }}