Open
Conversation
@platformio (an open source ecosystem for IoT development) in pair with @travis-ci (an open-source hosted, distributed continuous integration service) proposes to apply continuos integration for embedded projects in a few clicks. * Official Travis CI Documentation for PlatformIO: https://docs.travis-ci.com/user/integration/platformio/ * PlatformIO documentation for Travis CI: http://docs.platformio.org/en/latest/ci/travis.html ## Quickstart Please enable Travis.CI for this project http://docs.travis-ci.com/user/getting-started/#To-get-started-with-Travis-CI%3A (steps 1, 2, 5) ## Status Badge You can add badge with build status to your README **Markdown** ``` [](https://travis-ci.org/br3ttb/Arduino-PID-Library) ``` **RST** ``` .. image:: https://travis-ci.org/br3ttb/Arduino-PID-Library.svg?branch=master :target: https://travis-ci.org/br3ttb/Arduino-PID-Library ``` ## Examples * Project [USB_Host_Shield_2.0](https://github.com/felis/USB_Host_Shield_2.0) and [Travis CI Build](https://travis-ci.org/felis/USB_Host_Shield_2.0) * Project [Arduino-IRremote](https://github.com/z3t0/Arduino-IRremote) and [Travis CI Build](https://travis-ci.org/z3t0/Arduino-IRremote) * Project [ethercard](https://github.com/jcw/ethercard) and [Travis CI Build](https://travis-ci.org/jcw/ethercard)
|
This looks like a good way to verify that updates to the algorithm won't change the real-world action of controllers installed in existing systems in unforeseen ways. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hi @br3ttb,
I see that your project contains the practical examples. All of us understand that it’s not easy to test them before each new commit to this repository. What is more, need to be sure that all of these examples are actual and compile without errors.
I propose to solve this task using Continuous integration practice which is intended to detect integration bugs and save time over the lifespan of a project.
How does it work?
The each new commit to this repository will be tested using existing examples with appropriate platforms/embedded boards. @platformio is used here as cross-platform code builder and library manager in pair with @travis-ci (distributed continuous integration service).
Quickstart
Please enable @travis-ci following the steps 1, 2 and 5 here http://docs.travis-ci.com/user/getting-started/#To-get-started-with-Travis-CI%3A
For more details please follow to:
Status Badge
You can add badge with build status to your README
Markdown
RST
Examples