diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2012-10-19 14:04:27 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2012-10-19 14:04:27 -0700 |
commit | 53a70045ca3919cd8a161c1f9f4c7a30713e8747 (patch) | |
tree | 05b8fc4ca732c269303dbc125048d2c2c1a9390c | |
parent | c1a4bdbb34000dacf827cff40030f49dcb9d9ec9 (diff) | |
download | tmwa-53a70045ca3919cd8a161c1f9f4c7a30713e8747.tar.gz tmwa-53a70045ca3919cd8a161c1f9f4c7a30713e8747.tar.bz2 tmwa-53a70045ca3919cd8a161c1f9f4c7a30713e8747.tar.xz tmwa-53a70045ca3919cd8a161c1f9f4c7a30713e8747.zip |
Add travis build information
-rw-r--r-- | .travis.yml | 5 | ||||
-rwxr-xr-x | automated-build | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..39dcfb6 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: cpp +compiler: + - gcc + - clang +script: ./automated-build diff --git a/automated-build b/automated-build new file mode 100755 index 0000000..cad4475 --- /dev/null +++ b/automated-build @@ -0,0 +1,3 @@ +#!/bin/sh +# ./configure && make +make CXX=${CXX:-g++} |