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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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="STM32F103RE"
  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="STM32F103RC_bigtree"
  30. - TEST_PLATFORM="jgaurora_a5s_a1"
  31. - TEST_PLATFORM="STM32F103VE_longer"
  32. - TEST_PLATFORM="STM32F407VE_black"
  33. # Non-working environment tests
  34. #- TEST_PLATFORM="at90usb1286_cdc"
  35. #- TEST_PLATFORM="at90usb1286_dfu"
  36. #- TEST_PLATFORM="STM32F103CB_malyan"
  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="STM32F103RC_bigtree"
  43. #- TEST_PLATFORM="STM32F103RC_bigtree_USB"
  44. #- TEST_PLATFORM="STM32F103RC_fysetc"
  45. #- TEST_PLATFORM="STM32F4"
  46. #- TEST_PLATFORM="STM32F7"
  47. before_install:
  48. #
  49. # Fetch the tag information for the current branch
  50. - git fetch origin --tags
  51. #
  52. # Publish the buildroot script folder
  53. - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/bin/*
  54. - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/share/tests/*
  55. - export PATH=${TRAVIS_BUILD_DIR}/buildroot/bin/:${TRAVIS_BUILD_DIR}/buildroot/share/tests/:${PATH}
  56. install:
  57. #- pip install -U platformio
  58. - pip install -U https://github.com/platformio/platformio-core/archive/master.zip
  59. before_script:
  60. # Update PlatformIO packages
  61. - platformio update
  62. #
  63. # Change current working directory to the build dir
  64. - cd ${TRAVIS_BUILD_DIR}
  65. #
  66. # Generate custom version include
  67. - generate_version ${TRAVIS_BUILD_DIR}/Marlin/src/inc
  68. - cat ${TRAVIS_BUILD_DIR}/Marlin/src/inc/_Version.h
  69. #
  70. script:
  71. - run_tests ${TRAVIS_BUILD_DIR} ${TEST_PLATFORM}