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.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. dist: trusty
  2. sudo: false
  3. language: python
  4. python:
  5. - "2.7"
  6. notifications:
  7. email: false
  8. # Cache PlatformIO packages using Travis CI container-based infrastructure
  9. sudo: false
  10. cache:
  11. pip: true
  12. directories:
  13. - "~/.platformio"
  14. env:
  15. - TEST_PLATFORM="megaatmega2560"
  16. - TEST_PLATFORM="DUE"
  17. - TEST_PLATFORM="LPC1768"
  18. - TEST_PLATFORM="STM32F1"
  19. - TEST_PLATFORM="teensy35"
  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/develop.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}