projects
/
nnn.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e758ff7
)
Add .travis.yml
author
Zhiming Wang <zmwangx@gmail.com>
Mon, 3 Apr 2017 19:00:17 +0000 (15:00 -0400)
committer
Zhiming Wang <zmwangx@gmail.com>
Mon, 3 Apr 2017 19:15:37 +0000 (15:15 -0400)
.travis.yml
[new file with mode: 0644]
patch
|
blob
diff --git a/.travis.yml
b/.travis.yml
new file mode 100644
(file)
index 0000000..
1ff932a
--- /dev/null
+++ b/
.travis.yml
@@ -0,0
+1,17
@@
+language: c
+matrix:
+ include:
+ # Access more recent gcc and clang via a Trusty image
+ - os: linux
+ dist: trusty
+ compiler: gcc
+ - os: linux
+ dist: trusty
+ compiler: clang
+ - os: osx
+ compiler: gcc
+ - os: osx
+ compiler: clang
+script:
+ - make CFLAGS='-Werror'
+ - make CFLAGS='-Wall -Wextra -Werror'