-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy path.travis.yml
47 lines (40 loc) · 887 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Pull in python for access to pip for hererocks
language: python
sudo: false
os: linux
arch:
- amd64
- ppc64le
addons:
apt:
packages:
- libevent-dev
env:
global:
- LUAROCKS=3.3
matrix:
- LUA="moonjit 2.1"
- LUA="luajit 2.1"
- LUA="luajit 2.0"
- LUA="lua 5.4"
- LUA="lua 5.3"
- LUA="lua 5.2"
- LUA="lua 5.1"
jobs:
exclude:
- arch: ppc64le
env: LUA="luajit 2.1"
- arch: ppc64le
env: LUA="luajit 2.0"
before_install:
- pip install hererocks
- hererocks env -r $LUAROCKS --$LUA
- source env/bin/activate
- luarocks install busted
script:
- luarocks make rockspecs/luaevent/luaevent-scm-1.rockspec
- cd test && busted event_buffer-tests.lua
notifications:
email:
on_success: change
on_failure: always