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