Skip to content
This repository has been archived by the owner on May 17, 2020. It is now read-only.

Commit

Permalink
Enabled travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinealb committed Jun 12, 2014
1 parent d14c5a1 commit 815db57
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: c
compiler:
- gcc

before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq cpputest

before_script:
- mkdir build/
- cd build/
- cmake ..
- make

script: ./tests
2 changes: 2 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# State machine module
[![Build Status](https://travis-ci.org/cvra/state-machine.png)](https://travis-ci.org/cvra/state-machine)

This modules provides helper function to implement Finite State Machines
(http://en.wikipedia.org/wiki/Finite-state_machine) in C.
The states are implemented as function pointers which scale much better than
Expand Down

0 comments on commit 815db57

Please sign in to comment.