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 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. dist: bionic
  2. sudo: false
  3. language: python
  4. python:
  5. - "3.7"
  6. notifications:
  7. email: false
  8. env:
  9. - TEST_PLATFORM="megaatmega2560"
  10. - TEST_PLATFORM="DUE"
  11. - TEST_PLATFORM="LPC1768"
  12. - TEST_PLATFORM="LPC1769"
  13. - TEST_PLATFORM="STM32F1"
  14. - TEST_PLATFORM="teensy35"
  15. - TEST_PLATFORM="linux_native"
  16. - TEST_PLATFORM="esp32"
  17. - TEST_PLATFORM="alfawise_U20"
  18. - TEST_PLATFORM="black_stm32f407ve"
  19. - TEST_PLATFORM="adafruit_grandcentral_m4"
  20. before_install:
  21. #
  22. # Fetch the tag information for the current branch
  23. - git fetch origin --tags
  24. #
  25. # Publish the buildroot script folder
  26. - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/bin/*
  27. - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/share/tests/*
  28. - export PATH=${TRAVIS_BUILD_DIR}/buildroot/bin/:${TRAVIS_BUILD_DIR}/buildroot/share/tests/:${PATH}
  29. install:
  30. #- pip install -U platformio
  31. - pip install -U https://github.com/platformio/platformio-core/archive/master.zip
  32. before_script:
  33. # Update PlatformIO packages
  34. - platformio update
  35. #
  36. # Change current working directory to the build dir
  37. - cd ${TRAVIS_BUILD_DIR}
  38. #
  39. # Generate custom version include
  40. - generate_version ${TRAVIS_BUILD_DIR}/Marlin/src/inc
  41. - cat ${TRAVIS_BUILD_DIR}/Marlin/src/inc/_Version.h
  42. #
  43. script:
  44. - run_tests ${TRAVIS_BUILD_DIR} ${TEST_PLATFORM}