summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2016-12-05 20:05:05 -0500
committerTavian Barnes <tavianator@tavianator.com>2016-12-08 19:52:53 -0500
commitad962d56e2d06110e026888f2731a2c7fff88604 (patch)
tree8d94e51e803bbee0603a84938bc7df8d8ccc9a66
parenta152d1795485b80908cdcd15d0b1d181b4a0150d (diff)
downloadbfs-ad962d56e2d06110e026888f2731a2c7fff88604.tar.xz
Add a .travis.yml
-rw-r--r--.gitattributes1
-rw-r--r--.travis.yml18
2 files changed, 19 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
index e4504cf..084bde3 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1 +1,2 @@
.git* export-ignore
+.travis.yml export-ignore
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..a9f1e6b
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,18 @@
+language: c
+
+matrix:
+ include:
+ - os: linux
+ dist: trusty
+ sudo: false
+ compiler: gcc
+
+ - os: linux
+ dist: trusty
+ sudo: false
+ compiler: clang
+
+ - os: osx
+ compiler: clang
+
+script: make check