From ec423798a4f8ad1c5fea7565e8d3a3e893f31279 Mon Sep 17 00:00:00 2001 From: Ido Rosen Date: Sun, 23 Aug 2015 22:39:58 -0400 Subject: [PATCH] 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. --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 00000000..af0bd33b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: c +compiler: + - clang + - gcc +script: make && sudo make install