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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. dist: bionic
  2. sudo: false
  3. language: python
  4. python:
  5. - "3.7"
  6. notifications:
  7. email: false
  8. env:
  9. # Base Environments
  10. - TEST_PLATFORM="DUE"
  11. - TEST_PLATFORM="esp32"
  12. - TEST_PLATFORM="linux_native"
  13. - TEST_PLATFORM="LPC1768"
  14. - TEST_PLATFORM="LPC1769"
  15. - TEST_PLATFORM="megaatmega2560"
  16. - TEST_PLATFORM="STM32F103R"
  17. - TEST_PLATFORM="teensy31"
  18. - TEST_PLATFORM="teensy35"
  19. # Extended AVR Environments
  20. - TEST_PLATFORM="fysetc_f6_13"
  21. - TEST_PLATFORM="megaatmega1280"
  22. - TEST_PLATFORM="rambo"
  23. - TEST_PLATFORM="sanguino_atmega1284p"
  24. - TEST_PLATFORM="sanguino_atmega644p"
  25. # Extended STM32 Environments
  26. - TEST_PLATFORM="ARMED"
  27. - TEST_PLATFORM="BIGTREE_BTT002"
  28. - TEST_PLATFORM="BIGTREE_SKR_PRO"
  29. - TEST_PLATFORM="STM32F103R_bigtree"
  30. - TEST_PLATFORM="jgaurora_a5s_a1"
  31. - TEST_PLATFORM="STM32F103V_longer"
  32. - TEST_PLATFORM="STM32F407VE_black"
  33. # Non-working environment tests
  34. #- TEST_PLATFORM="at90usb1286_cdc"
  35. #- TEST_PLATFORM="at90usb1286_dfu"
  36. #- TEST_PLATFORM="malyanm200"
  37. #- TEST_PLATFORM="mks_robin"
  38. #- TEST_PLATFORM="mks_robin_lite"
  39. #- TEST_PLATFORM="mks_robin_mini"
  40. #- TEST_PLATFORM="mks_robin_nano"
  41. #- TEST_PLATFORM="SAMD51_grandcentral_m4"
  42. #- TEST_PLATFORM="STM32F103R_bigtree"
  43. #- TEST_PLATFORM="STM32F103R_fysetc"
  44. #- TEST_PLATFORM="STM32F4"
  45. #- TEST_PLATFORM="STM32F7"
  46. before_install:
  47. #
  48. # Fetch the tag information for the current branch
  49. - git fetch origin --tags
  50. #
  51. # Publish the buildroot script folder
  52. - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/bin/*
  53. - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/share/tests/*
  54. - export PATH=${TRAVIS_BUILD_DIR}/buildroot/bin/:${TRAVIS_BUILD_DIR}/buildroot/share/tests/:${PATH}
  55. install:
  56. #- pip install -U platformio
  57. - pip install -U https://github.com/platformio/platformio-core/archive/master.zip
  58. before_script:
  59. # Update PlatformIO packages
  60. - platformio update
  61. #
  62. # Change current working directory to the build dir
  63. - cd ${TRAVIS_BUILD_DIR}
  64. #
  65. # Generate custom version include
  66. - generate_version ${TRAVIS_BUILD_DIR}/Marlin/src/inc
  67. - cat ${TRAVIS_BUILD_DIR}/Marlin/src/inc/_Version.h
  68. #
  69. script:
  70. - run_tests ${TRAVIS_BUILD_DIR} ${TEST_PLATFORM}