-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
language: erlang | ||
|
||
env: | ||
global: | ||
- LUAROCKS_BASE=luarocks-2.1.1 | ||
matrix: | ||
- LUA=lua5.1 LUA_DEV=liblua5.1-dev LUA_VER=5.1 LUA_SFX=5.1 LUA_INCDIR=/usr/include/lua5.1 | ||
- LUA=lua5.2 LUA_DEV=liblua5.2-dev LUA_VER=5.2 LUA_SFX=5.2 LUA_INCDIR=/usr/include/lua5.2 | ||
- LUA=luajit LUA_DEV=libluajit-5.1-dev LUA_VER=5.1 LUA_SFX=jit LUA_INCDIR=/usr/include/luajit-2.0 LUAJIT_VER=2.0 | ||
- LUA=luajit LUA_DEV=libluajit-5.1-dev LUA_VER=5.1 LUA_SFX=jit LUA_INCDIR=/usr/include/luajit-2.1 LUAJIT_VER=2.1 | ||
|
||
before_install: | ||
- if [ $LUA = "luajit" ] && [ $LUAJIT_VER = "2.0" ]; then | ||
sudo add-apt-repository ppa:mwild1/ppa -y && sudo apt-get update -y; | ||
fi | ||
- if [ $LUA = "luajit" ] && [ $LUAJIT_VER = "2.1" ]; then | ||
sudo add-apt-repository ppa:neomantra/luajit-v2.1 -y && sudo apt-get update -y; | ||
fi | ||
- sudo apt-get install $LUA | ||
- sudo apt-get install $LUA_DEV | ||
- lua$LUA_SFX -v | ||
# Install a recent luarocks release | ||
- wget http://luarocks.org/releases/$LUAROCKS_BASE.tar.gz | ||
- tar zxvpf $LUAROCKS_BASE.tar.gz | ||
- cd $LUAROCKS_BASE | ||
- ./configure | ||
--lua-version=$LUA_VER --lua-suffix=$LUA_SFX --with-lua-include="$LUA_INCDIR" | ||
- sudo make | ||
- sudo make install | ||
- cd $TRAVIS_BUILD_DIR | ||
|
||
install: | ||
- git clone https://github.com/sstephenson/bats.git | ||
- cd bats | ||
- sudo ./install.sh /usr/local | ||
- cd $TRAVIS_BUILD_DIR | ||
|
||
script: | ||
- ./configure | ||
- make test |