2017-02-06 01:56:46 -08:00
|
|
|
# Continuous Integration (CI) is the practice, in software
|
|
|
|
# engineering, of merging all developer working copies with a shared mainline
|
|
|
|
# several times a day < http://docs.platformio.org/page/ci/index.html >
|
|
|
|
#
|
|
|
|
# Documentation:
|
|
|
|
#
|
|
|
|
# * Travis CI Embedded Builds with PlatformIO
|
|
|
|
# < https://docs.travis-ci.com/user/integration/platformio/ >
|
|
|
|
#
|
|
|
|
# * PlatformIO integration with Travis CI
|
|
|
|
# < http://docs.platformio.org/page/ci/travis.html >
|
|
|
|
#
|
|
|
|
# * User Guide for `platformio ci` command
|
|
|
|
# < http://docs.platformio.org/page/userguide/cmd_ci.html >
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# Please choice one of the following templates (proposed below) and uncomment
|
|
|
|
# it (remove "# " before each line) or use own configuration according to the
|
|
|
|
# Travis CI documentation (see above).
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Template #1: General project. Test it using existing `platformio.ini`.
|
|
|
|
#
|
|
|
|
|
2017-06-02 16:37:18 -07:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
|
2017-06-16 20:02:13 -07:00
|
|
|
dist: trusty
|
2017-06-15 20:37:25 -07:00
|
|
|
sudo: required
|
2017-06-16 20:02:13 -07:00
|
|
|
|
2017-06-02 16:37:18 -07:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- "~/.platformio"
|
|
|
|
|
2017-06-28 21:44:34 -07:00
|
|
|
#addons:
|
|
|
|
# apt:
|
|
|
|
# sources:
|
|
|
|
# - sourceline: 'deb http://ports.ubuntu.com/ubuntu-ports trusty-backports main restricted universe multiverse'
|
|
|
|
# packages:
|
|
|
|
# - cppcheck/trusty-backports
|
2017-06-16 20:02:13 -07:00
|
|
|
|
2017-06-15 20:35:01 -07:00
|
|
|
before_install:
|
2017-06-28 21:32:02 -07:00
|
|
|
- sudo apt-get update -qq
|
2017-06-28 21:44:34 -07:00
|
|
|
# - sudo apt-get install -t trusty-backports cppcheck
|
2017-06-28 21:32:02 -07:00
|
|
|
- sudo apt-get build-dep -qq cppcheck
|
2019-06-25 01:27:54 -07:00
|
|
|
# - wget https://github.com/danmar/cppcheck/archive/1.79.zip
|
|
|
|
# - unzip 1.79.zip
|
|
|
|
# - cd cppcheck-1.79
|
2019-06-25 17:31:35 -07:00
|
|
|
# - git clone --depth=10 https://github.com/noisymime/cppcheck.git
|
|
|
|
# - cd cppcheck
|
|
|
|
# - sudo make install CFGDIR=/usr/share/cppcheck/ HAVE_RULES=yes
|
2019-04-07 18:38:20 -07:00
|
|
|
# Requirements for doxygen
|
|
|
|
- sudo apt-get install doxygen graphviz
|
2017-06-15 20:35:01 -07:00
|
|
|
|
2017-06-02 16:37:18 -07:00
|
|
|
install:
|
2019-09-02 06:50:56 -07:00
|
|
|
- pip install -U platformio
|
2017-06-02 16:37:18 -07:00
|
|
|
|
|
|
|
script:
|
2017-06-28 21:40:50 -07:00
|
|
|
- cd /home/travis/build
|
2019-06-25 01:27:54 -07:00
|
|
|
- git clone --depth=10 https://github.com/noisymime/cppcheck.git noisymime/cppcheck_github
|
2019-09-02 06:50:56 -07:00
|
|
|
- cd noisymime/cppcheck_github
|
2019-09-02 06:45:28 -07:00
|
|
|
#- make
|
2019-09-02 06:50:56 -07:00
|
|
|
- cd ../speeduino
|
2017-07-23 16:12:51 -07:00
|
|
|
- platformio update
|
2019-08-21 00:42:01 -07:00
|
|
|
# Run the builds (Mega must be last so that the hex file isn't cleaned up)
|
|
|
|
- platformio run -e teensy35 -e teensy40 -e megaatmega2560
|
2019-04-07 18:38:20 -07:00
|
|
|
# Upload ini and hex files to speeduino.com server
|
2019-09-02 07:09:46 -07:00
|
|
|
- curl --tlsv1.2 --ipv4 --user "speeduino_firmware@speeduino.com:$WEB_PWD" --basic -T "./.pio/build/megaatmega2560/firmware.hex" "https://speeduino.com:2078/bin/master.hex"
|
|
|
|
- curl --tlsv1.2 --ipv4 --user "speeduino_firmware@speeduino.com:$WEB_PWD" --basic -T "./reference/speeduino.ini" "https://speeduino.com:2078/master.ini"
|
2019-04-07 18:38:20 -07:00
|
|
|
# Begin MISRA scan
|
2019-09-02 07:02:26 -07:00
|
|
|
- cd ..
|
2019-09-02 06:45:28 -07:00
|
|
|
#- chmod +x speeduino/misra/check_misra_github.sh
|
|
|
|
#- speeduino/misra/check_misra_github.sh
|
2019-04-09 03:04:28 -07:00
|
|
|
# Do doxygen run and upload to gh-pages server.
|
2019-04-07 18:38:20 -07:00
|
|
|
- cd speeduino
|
|
|
|
- doxygen
|
2019-04-09 03:04:28 -07:00
|
|
|
- cd ..
|
|
|
|
- git clone https://github.com/speeduino/speeduino-doxygen
|
|
|
|
- cp -r speeduino/reference/doxygen/html/* speeduino-doxygen
|
|
|
|
- cd speeduino-doxygen
|
|
|
|
- git add --all
|
2019-09-02 07:09:46 -07:00
|
|
|
- git commit --allow-empty -m "Deploy code docs to GitHub Pages. Travis build ${TRAVIS_BUILD_NUMBER}" -m "Commit ${TRAVIS_COMMIT}"
|
2019-04-09 03:04:28 -07:00
|
|
|
- git push --force "https://${GH_DOXYGEN}@github.com/speeduino/speeduino-doxygen" > /dev/null 2>&1
|
2017-06-20 20:09:57 -07:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
slack: speeduino:Y8Bhhviu4r7HFF3abMYDnH3p
|
2017-06-20 22:30:06 -07:00
|
|
|
|
2019-02-10 23:20:14 -08:00
|
|
|
env:
|
|
|
|
global:
|
2019-06-24 20:51:42 -07:00
|
|
|
- secure: "L6pyVQKCkOJNPBEbx6pEln+QnGyntouZW1tGSqOysgRFmUOdXH8l+DKq0YwW+civ0yWrF91G5YkWmyAE1jkoDLy7TBOt8Iqq/xAmf+BHIqDl/+uNsVxgvZ6+gqwMeoWBfmo0vmRj3/wY7ZmepNe2jKop/DX2olhBgmRdCKp8nA+SX8/pc2tO7DZeSsbCP0+JozvVhFtQMNwzkVp4llmER2yGr+u5pTTOz4eXCEkEKUCZMZ6JhvPKCDm+7tUQSS4NvShizj7QZIjqxvINQPi9i1TGJRoPTlQqYNGfTHufU3/W7nsUWFdtrZRapLZuKN/ktOr5T0ydQriNlDpBoIWXJvHzZrBjyT2arzz7jw57QZ8Yhyhetdw+zIfBepLEp7nKZGjR3eeWGtRzj8RRIgw19MT+8g2l7a1gKte+L01o4y8RKfQCqt/2PcVelIUv3X08JVOE6q7PumBEUSAkk1ITE80Y8SYoQda62gehH06xloSWJvU79tIC0drWMO+hGvj4LTpoe9ujMYTxkwGjiIfx9I9jButAN0vI2MtcDyVR+9XuKwZc9nFf4z4HR8xav1NmrzEAy0OVsOdjpM3OxAnVzTUo4M0c11dt9sDP7xR3TgwgSs2ptNOamujRFqrONHnn6VglOnWuypfvJfBxfovuRP1+UZoHIH7sbiMXmX/3nyA="
|
|
|
|
- secure: "LKvIikE69mmD2yroQ84KFfrCw9sCU6o4zDqdGQM3mFKVi/Tuiyskvk3KMbf5Rxwt6Fy2OhdvitxG1ckbpccdTNlEbef7DtBdjNd5Oh72GseBCwToNTinFCVpJbj2AWceDykSDsaxzZMg3ienXwZ5XB3ClyUi6N+8MLwpsX4kJuGNfOY3z6yC+JQSvuVhIb1zDRYDKAHDuabzo38sk8q/WhBEVvL95lzPHoxMEpaQfwyjZ4lLhDbqe9/y7s7M9bjz1K9AXHS6h5fIWGVKVzL8YKoOVi6Na6vcnS8w7YNr71AMr0d7H0nM9gG6Fy4DDyUsfa9SBhLVxMWbEPe9+eJNZ0MkuwI/6eaxiqnqAcMfFyvw1bwBGCi4+x0+9riwpOYE21q3Mq/XbTKdvI7YG4RPfd2X4Xe6hOVPW/5iEICZdxrpLdyDN7suZX7Y8POcBeJgi6HkdKXfDO6NlCV+Fnmwx/FltHILX2GNASob/o2/dVkPNh3NjxVqgwN9OxyzNQefWC3z1W3YgBwTWc3VkuiuE0eTEkBX5aSGTGZWqysz4U42/7M+MiSC80VpMbsFNd1FEGZR75Y644q+aUHLGNWIK01dslxZUiUEh5CkdOHTqpeHVszJyCblTtIBAXyBhZfnbdOBxpPsZGg2U+iSUSOzXW2W11e52ARhpi0QlnvhdkI="
|