diff options
author | David Wagner <david.wagner@intel.com> | 2016-11-22 13:53:27 +0100 |
---|---|---|
committer | David Wagner <david.wagner@intel.com> | 2016-11-22 13:59:35 +0100 |
commit | 96f9e430957b5de558e9a9d67a4d425a3a8bfe48 (patch) | |
tree | 26e7d4d57d97754af433ca95958db8feeea6eab2 | |
parent | 38298e6c569b3f5c0ed53cf250cf26f5bb8279fe (diff) |
Add a Travis CI configuration file
See https://docs.travis-ci.com/
Signed-off-by: David Wagner <david.wagner@intel.com>
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f64a864 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,13 @@ +os: linux +sudo: false +language: c +compiler: gcc + +addons: + apt: + packages: + - doxygen + - graphviz + +script: + - make |