2017-08-03 15:45:11 +00:00
|
|
|
dist: trusty
|
|
|
|
sudo: false
|
2017-08-03 12:12:31 +00:00
|
|
|
|
2017-07-19 20:34:30 +00:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
|
2016-07-19 00:45:13 +00:00
|
|
|
notifications:
|
|
|
|
email: false
|
2017-07-19 20:34:30 +00:00
|
|
|
|
|
|
|
# Cache PlatformIO packages using Travis CI container-based infrastructure
|
|
|
|
sudo: false
|
2017-09-06 11:28:32 +00:00
|
|
|
cache:
|
2017-07-19 20:34:30 +00:00
|
|
|
pip: true
|
|
|
|
directories:
|
|
|
|
- "~/.platformio"
|
|
|
|
|
|
|
|
env:
|
2018-07-14 04:42:15 +00:00
|
|
|
- TEST_PLATFORM="megaatmega2560"
|
|
|
|
- TEST_PLATFORM="LPC1768"
|
|
|
|
- TEST_PLATFORM="DUE"
|
|
|
|
- TEST_PLATFORM="STM32F1"
|
|
|
|
- TEST_PLATFORM="teensy35"
|
2017-07-19 20:34:30 +00:00
|
|
|
|
2015-01-03 11:43:40 +00:00
|
|
|
before_install:
|
2016-05-10 00:45:42 +00:00
|
|
|
#
|
2016-05-20 01:30:03 +00:00
|
|
|
# Fetch the tag information for the current branch
|
2015-06-08 12:44:49 +00:00
|
|
|
- git fetch origin --tags
|
2016-05-10 00:45:42 +00:00
|
|
|
#
|
|
|
|
# Publish the buildroot script folder
|
|
|
|
- chmod +x ${TRAVIS_BUILD_DIR}/buildroot/bin/*
|
2017-09-06 11:28:32 +00:00
|
|
|
- export PATH=${TRAVIS_BUILD_DIR}/buildroot/bin/:${PATH}
|
2018-07-14 04:42:15 +00:00
|
|
|
- chmod +x ${TRAVIS_BUILD_DIR}/buildroot/share/tests/*
|
|
|
|
- export PATH=${TRAVIS_BUILD_DIR}/buildroot/share/tests/:${PATH}
|
2017-07-11 20:59:27 +00:00
|
|
|
|
2017-07-19 20:34:30 +00:00
|
|
|
install:
|
2018-01-10 11:01:00 +00:00
|
|
|
#- pip install -U platformio
|
|
|
|
- pip install -U https://github.com/platformio/platformio-core/archive/develop.zip
|
2017-07-11 20:59:27 +00:00
|
|
|
|
2015-01-03 11:43:40 +00:00
|
|
|
before_script:
|
2018-01-10 00:32:22 +00:00
|
|
|
# Update PlatformIO packages
|
|
|
|
- platformio update
|
2016-05-10 00:45:42 +00:00
|
|
|
#
|
|
|
|
# Change current working directory to the build dir
|
|
|
|
- cd ${TRAVIS_BUILD_DIR}
|
2016-04-01 04:01:55 +00:00
|
|
|
#
|
2016-05-20 01:30:03 +00:00
|
|
|
# Generate custom version include
|
2018-09-02 08:27:39 +00:00
|
|
|
- generate_version ${TRAVIS_BUILD_DIR}/Marlin/src/inc
|
2017-09-06 11:28:32 +00:00
|
|
|
- cat ${TRAVIS_BUILD_DIR}/Marlin/src/inc/_Version.h
|
2016-05-20 01:30:03 +00:00
|
|
|
#
|
2015-01-03 11:43:40 +00:00
|
|
|
script:
|
2018-07-14 04:42:15 +00:00
|
|
|
- start_tests ${TRAVIS_BUILD_DIR} ${TEST_PLATFORM}
|