aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorEtiene Dalcol <Etiene@users.noreply.github.com>2015-04-15 09:14:38 +0100
committerEtiene Dalcol <Etiene@users.noreply.github.com>2015-04-15 09:14:38 +0100
commit2772aaf051a81b39540b77ee33eab13b6875becd (patch)
treeac10c91a0c692eca1713acae5c06c30c48e11c30 /.travis.yml
parentd5942f76be9be2815857fa90c8f7fd27b46e43d0 (diff)
parentfae07a450ea0b1e9998c4443c147d4c9e8bd4ef7 (diff)
downloadvalua-2772aaf051a81b39540b77ee33eab13b6875becd.tar.gz
valua-2772aaf051a81b39540b77ee33eab13b6875becd.tar.bz2
valua-2772aaf051a81b39540b77ee33eab13b6875becd.zip
Merge pull request #5 from ignacio/travis_integration
Adds travis-ci integration
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml27
1 files changed, 27 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..754db70
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,27 @@
+language: c
+
+sudo: false
+
+env:
+ global:
+ - LUAROCKS=2.2.1
+ matrix:
+ - LUA=lua5.1
+ - LUA=lua5.2
+ - LUA=lua5.3
+ - LUA=luajit # latest stable version (2.0.3)
+ - LUA=luajit2.0 # current head of 2.0 branch
+ - LUA=luajit2.1 # current head of 2.1 branch
+
+before_install:
+ - source .travis/setenv_lua.sh
+
+script:
+ - lua valua-test.lua
+
+after_success:
+
+notifications:
+ email:
+ on_success: change
+ on_failure: always