Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Continuous Integration #138

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ivankravets
Copy link

Hi @ntruchsess,

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

[![Build Status](https://travis-ci.org/ntruchsess/arduino_uip.svg?branch=master)](https://travis-ci.org/ntruchsess/arduino_uip)

RST

.. image:: https://travis-ci.org/ntruchsess/arduino_uip.svg?branch=master
    :target: https://travis-ci.org/ntruchsess/arduino_uip

Examples

Hi @ntruchsess,

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](https://en.wikipedia.org/wiki/Continuous_integration) practice which is intended to detect [integration bugs](https://en.wikipedia.org/wiki/Software_testing#Integration_testing) 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:

* 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

## Status Badge
You can add [badge with build status](https://docs.travis-ci.com/user/status-images/) to your README

**Markdown**
```
[![Build Status](https://travis-ci.org/ntruchsess/arduino_uip.svg?branch=master)](https://travis-ci.org/ntruchsess/arduino_uip)
```

**RST**
```
.. image:: https://travis-ci.org/ntruchsess/arduino_uip.svg?branch=master
    :target: https://travis-ci.org/ntruchsess/arduino_uip
```

## Examples

* Project [USB_Host_Shield_2.0](https://github.com/felis/USB_Host_Shield_2.0) [![Build Status](https://travis-ci.org/felis/USB_Host_Shield_2.0.svg?branch=master)](https://travis-ci.org/felis/USB_Host_Shield_2.0)
* Project [Arduino-IRremote](https://github.com/z3t0/Arduino-IRremote) [![Build Status](https://travis-ci.org/z3t0/Arduino-IRremote.svg?branch=master)](https://travis-ci.org/z3t0/Arduino-IRremote)
* Project [ethercard](https://github.com/jcw/ethercard) [![Build Status](https://travis-ci.org/jcw/ethercard.svg?branch=master)](https://travis-ci.org/jcw/ethercard)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant