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.

.travis.yml 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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="megaatmega2560"
  14. - TEST_PLATFORM="STM32F103RE"
  15. - TEST_PLATFORM="teensy31"
  16. - TEST_PLATFORM="teensy35"
  17. # Extended AVR Environments
  18. - TEST_PLATFORM="fysetc_f6_13"
  19. - TEST_PLATFORM="megaatmega1280"
  20. - TEST_PLATFORM="rambo"
  21. - TEST_PLATFORM="sanguino_atmega1284p"
  22. - TEST_PLATFORM="sanguino_atmega644p"
  23. # Extended STM32 Environments
  24. - TEST_PLATFORM="ARMED"
  25. - TEST_PLATFORM="BIGTREE_BTT002"
  26. - TEST_PLATFORM="BIGTREE_SKR_PRO"
  27. - TEST_PLATFORM="STM32F103RC_bigtree"
  28. - TEST_PLATFORM="jgaurora_a5s_a1"
  29. - TEST_PLATFORM="STM32F103VE_longer"
  30. - TEST_PLATFORM="STM32F407VE_black"
  31. - TEST_PLATFORM="mks_robin"
  32. # Put lengthy tests last
  33. - TEST_PLATFORM="LPC1768"
  34. - TEST_PLATFORM="LPC1769"
  35. # Non-working environment tests
  36. #- TEST_PLATFORM="at90usb1286_cdc"
  37. #- TEST_PLATFORM="at90usb1286_dfu"
  38. #- TEST_PLATFORM="STM32F103CB_malyan"
  39. #- TEST_PLATFORM="mks_robin_lite"
  40. #- TEST_PLATFORM="mks_robin_mini"
  41. #- TEST_PLATFORM="mks_robin_nano"
  42. #- TEST_PLATFORM="SAMD51_grandcentral_m4"
  43. #- TEST_PLATFORM="STM32F103RC_bigtree"
  44. #- TEST_PLATFORM="STM32F103RC_bigtree_USB"
  45. #- TEST_PLATFORM="STM32F103RC_fysetc"
  46. #- TEST_PLATFORM="STM32F4"
  47. #- TEST_PLATFORM="STM32F7"
  48. before_install:
  49. #
  50. # Fetch the tag information for the current branch
  51. - git fetch origin --tags
  52. #
  53. # Publish the buildroot script folder
  54. - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/bin/*
  55. - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/share/tests/*
  56. - export PATH=${TRAVIS_BUILD_DIR}/buildroot/bin/:${TRAVIS_BUILD_DIR}/buildroot/share/tests/:${PATH}
  57. install:
  58. #- pip install -U platformio
  59. - pip install -U https://github.com/platformio/platformio-core/archive/master.zip
  60. before_script:
  61. # Update PlatformIO packages
  62. - platformio update
  63. #
  64. # Change current working directory to the build dir
  65. - cd ${TRAVIS_BUILD_DIR}
  66. #
  67. # Generate custom version include
  68. - generate_version ${TRAVIS_BUILD_DIR}/Marlin/
  69. - cat ${TRAVIS_BUILD_DIR}/Marlin/Version.h
  70. #
  71. script:
  72. - run_tests ${TRAVIS_BUILD_DIR} ${TEST_PLATFORM}