My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

test-builds.yml 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  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. - esp32
  34. - linux_native
  35. - mega2560
  36. - teensy31
  37. - teensy35
  38. - SAMD51_grandcentral_m4
  39. # Extended AVR Environments
  40. - FYSETC_F6_13
  41. - mega1280
  42. - rambo
  43. - sanguino1284p
  44. - sanguino644p
  45. # Extended STM32 Environments
  46. - STM32F103RC_btt
  47. - STM32F103RC_btt_USB
  48. - STM32F103RE_btt
  49. - STM32F103RE_btt_USB
  50. - STM32F103RC_fysetc
  51. - STM32F103RC_meeb
  52. - jgaurora_a5s_a1
  53. - STM32F103VE_longer
  54. - STM32F407VE_black
  55. - STM32F401VE_STEVAL
  56. - BIGTREE_BTT002
  57. - BIGTREE_SKR_PRO
  58. - BIGTREE_GTR_V1_0
  59. - mks_robin
  60. - ARMED
  61. - FYSETC_S6
  62. - STM32F070RB_malyan
  63. - malyan_M300
  64. - mks_robin_lite
  65. - FLYF407ZG
  66. - rumba32
  67. - mks_robin_pro
  68. - STM32F103RET6_creality
  69. - LERDGEX
  70. # Put lengthy tests last
  71. - LPC1768
  72. - LPC1769
  73. # STM32 with non-STM framework. both broken for now. they should use HAL_STM32 which is working.
  74. #- STM32F4
  75. #- STM32F7
  76. # Non-working environment tests
  77. #- at90usb1286_cdc
  78. #- at90usb1286_dfu
  79. #- STM32F103CB_malyan
  80. #- mks_robin_mini
  81. #- mks_robin_nano
  82. steps:
  83. - name: Select Python 3.7
  84. uses: actions/setup-python@v1
  85. with:
  86. python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
  87. architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
  88. - name: Install PlatformIO
  89. run: |
  90. pip install -U https://github.com/platformio/platformio-core/archive/develop.zip
  91. platformio update
  92. - name: Check out the PR
  93. uses: actions/checkout@v2
  94. - name: Run ${{ matrix.test-platform }} Tests
  95. run: |
  96. # Inline tests script
  97. chmod +x buildroot/bin/*
  98. chmod +x buildroot/tests/*
  99. export PATH=./buildroot/bin/:./buildroot/tests/:${PATH}
  100. run_tests . ${{ matrix.test-platform }}