rockspecs: adds 0.4.4 rockspec
[luaevent.git] / .travis.yml
blobd0f6d320f0c7eb53d7699bd3bca8533a79293173
1 # Pull in python for access to pip for hererocks
2 language: python
4 sudo: false
6 env:
7     global:
8         - LUAROCKS=2.3.0
9     matrix:
10         - LUA="luajit 2.1"
11         - LUA="luajit 2.0"
12         - LUA="lua 5.3"
13         - LUA="lua 5.2"
14         - LUA="lua 5.1"
16 before_install:
17     - pip install hererocks
18     - hererocks env -r $LUAROCKS --$LUA
19     - source env/bin/activate
20     - luarocks install busted
22 script:
23     - luarocks make rockspecs/luaevent/luaevent-scm-0.rockspec
24     - cd test && busted event_buffer-tests.lua
26 notifications:
27     email:
28         on_success: change
29         on_failure: always