Add .travis.yml file for Travis-CI support.

Since LuaJIT does not follow the typical "./configure && make && make test"
pattern, this custom .travis.yml will run "make && sudo make install" on the
Travis-CI runner VM every time a pull request or push is made to the
repository, once this commit is merged.

We can use Travis-CI for continuous integration as needed.  Notification
settings can be adjusted in this file as well to have Travis-CI email the
mailing list when a push breaks the build, etc.
This commit is contained in:
Ido Rosen 2015-08-23 22:39:58 -04:00
parent 774187dd0e
commit bbdf471ecb

5
.travis.yml Normal file
View File

@ -0,0 +1,5 @@
language: c
compiler:
- clang
- gcc
script: make && sudo make install