Skip to content
This repository was archived by the owner on Nov 20, 2020. It is now read-only.

Commit 03b4264

Browse files
committed
updated travis build with cleaner output for 5.1 branch
1 parent 09ebcf0 commit 03b4264

File tree

1 file changed

+5
-17
lines changed

1 file changed

+5
-17
lines changed

.travis.yml

Lines changed: 5 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -5,32 +5,20 @@
55
# Since CMake is not directly supported we use erlang VMs
66
language: erlang
77

8-
# Try using multiple Lua Implementations
9-
env:
10-
- LUA="" # Use automatic dependencies
11-
- LUA="luajit" # Try with LuaJIT
12-
# - CMAKE="-DCMAKE_VARIABLE=value"
13-
# - LUA="lua-5.1.5"
14-
15-
# Allow luajit to fail
16-
matrix:
17-
allow_failures:
18-
- env: LUA="luajit"
19-
208
# We need CMake and LuaDist
219
install:
2210
- export MODULE=`basename $PWD`
23-
- sudo apt-get install cmake
24-
- git clone git://github.com/LuaDist/bootstrap.git _luadist
11+
- sudo apt-get install cmake >/dev/null 2>&1
12+
- git clone git://github.com/LuaDist/bootstrap.git _luadist >/dev/null 2>&1
2513
- cd _luadist
26-
- git submodule update --init
27-
- ./bootstrap
14+
- git submodule update --init >/dev/null 2>&1
15+
- ./bootstrap >/dev/null 2>&1
2816
- export LUADIST=$PWD/_install/bin/luadist
2917
- cd $HOME
3018

3119
# Use LuaDist to deploy the module
3220
script:
33-
- $LUADIST _test install $LUA $MODULE-scm $CMAKE -verbose=true -debug=true -test=true
21+
- $LUADIST _test install "lua~=5.1" -verbose=true -test=true
3422

3523
# Execute additional tests or commands
3624
#after_script:

0 commit comments

Comments
 (0)