You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
450 B
27 lines
450 B
language: python
|
|
sudo: false
|
|
|
|
env:
|
|
- LUA="lua=5.1"
|
|
- LUA="lua=5.2"
|
|
- LUA="lua=5.3"
|
|
- LUA="luajit=2.0"
|
|
- LUA="luajit=2.1"
|
|
|
|
before_install:
|
|
- pip install hererocks
|
|
- hererocks base -r^ --$LUA
|
|
- export PATH=$PATH:$PWD/base/bin # Add directory with all installed binaries to PATH
|
|
- luarocks install busted
|
|
|
|
script:
|
|
- busted -v
|
|
|
|
branches:
|
|
except:
|
|
- gh-pages
|
|
|
|
notifications:
|
|
email:
|
|
on_success: change
|
|
on_failure: always
|
|
|