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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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="teensy31"
  15. - TEST_PLATFORM="teensy35"
  16. - TEST_PLATFORM="linux_native"
  17. - TEST_PLATFORM="esp32"
  18. - TEST_PLATFORM="alfawise_U20"
  19. - TEST_PLATFORM="black_stm32f407ve"
  20. - TEST_PLATFORM="adafruit_grandcentral_m4"
  21. before_install:
  22. #
  23. # Fetch the tag information for the current branch
  24. - git fetch origin --tags
  25. #
  26. # Publish the buildroot script folder
  27. - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/bin/*
  28. - chmod +x ${TRAVIS_BUILD_DIR}/buildroot/share/tests/*
  29. - export PATH=${TRAVIS_BUILD_DIR}/buildroot/bin/:${TRAVIS_BUILD_DIR}/buildroot/share/tests/:${PATH}
  30. install:
  31. #- pip install -U platformio
  32. - pip install -U https://github.com/platformio/platformio-core/archive/master.zip
  33. before_script:
  34. # Update PlatformIO packages
  35. - platformio update
  36. #
  37. # Change current working directory to the build dir
  38. - cd ${TRAVIS_BUILD_DIR}
  39. #
  40. # Generate custom version include
  41. - generate_version ${TRAVIS_BUILD_DIR}/Marlin/src/inc
  42. - cat ${TRAVIS_BUILD_DIR}/Marlin/src/inc/_Version.h
  43. #
  44. script:
  45. - run_tests ${TRAVIS_BUILD_DIR} ${TEST_PLATFORM}