diff options
author | Oscar Lim <olim@ucla.edu> | 2016-01-24 22:53:37 -0800 |
---|---|---|
committer | Oscar Lim <olim@ucla.edu> | 2016-02-10 23:45:49 -0800 |
commit | 7499b422e3f07bf25704cbf7989e845f89697fa8 (patch) | |
tree | 524d8a262a9d61486b858e70c64f8aedbda43095 /.travis.yml | |
download | luasystem-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.yml | 23 |
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 @@ | |||
1 | language: c | ||
2 | |||
3 | env: | ||
4 | - LUA='Lua 5.1' | ||
5 | - LUA='Lua 5.2' | ||
6 | - LUA='Lua 5.3' | ||
7 | - LUA='LuaJIT 2.0' | ||
8 | |||
9 | before_install: | ||
10 | - bash .travis_setup.sh | ||
11 | |||
12 | install: | ||
13 | - sudo luarocks install busted | ||
14 | - sudo luarocks make | ||
15 | |||
16 | script: busted spec | ||
17 | |||
18 | branches: | ||
19 | only: | ||
20 | - master | ||
21 | |||
22 | notifications: | ||
23 | email: false | ||