mikepaul-LuaJIT/.travis.yml
Ido Rosen bbdf471ecb 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.
2015-08-23 23:06:13 -04:00

6 lines
78 B
YAML

language: c
compiler:
- clang
- gcc
script: make && sudo make install