Commit 6c70a42ace6116ec658e364206a0d3ae158f9856

Paul Menzel 2016-12-18T11:19:20

Add configuration file Travis CI After registering at [Travis CI](https://travis-ci.org/), and enabling the GitHub project in the profile, with this configuration file, every branch will be build tested, that means, `make` is run. On GitHub, the branch or merge/pull request will then be annotated, if the build passed or failed. This way, simple build errors can be detected before accepting a merge/pull request. Currently, the default build environment is Ubuntu 12.04.5 LTS with gcc (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3. Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>

1
2
3
4
5
6
7
8
9
10
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..9b59843
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,4 @@
+language: c
+
+script:
+- make