aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorOscar Lim <olim@ucla.edu>2016-01-24 22:53:37 -0800
committerOscar Lim <olim@ucla.edu>2016-02-10 23:45:49 -0800
commit7499b422e3f07bf25704cbf7989e845f89697fa8 (patch)
tree524d8a262a9d61486b858e70c64f8aedbda43095 /.travis.yml
downloadluasystem-7499b422e3f07bf25704cbf7989e845f89697fa8.tar.gz
luasystem-7499b422e3f07bf25704cbf7989e845f89697fa8.tar.bz2
luasystem-7499b422e3f07bf25704cbf7989e845f89697fa8.zip
Support for gettime and sleep functions
Provide `gettime` and `sleep` functions with at least 1 millisecond resolution.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml23
1 files changed, 23 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..efc632b
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,23 @@
1language: c
2
3env:
4 - LUA='Lua 5.1'
5 - LUA='Lua 5.2'
6 - LUA='Lua 5.3'
7 - LUA='LuaJIT 2.0'
8
9before_install:
10 - bash .travis_setup.sh
11
12install:
13 - sudo luarocks install busted
14 - sudo luarocks make
15
16script: busted spec
17
18branches:
19 only:
20 - master
21
22notifications:
23 email: false