summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Drahoš <drahosp@gmail.com>2012-04-03 01:37:20 +0200
committerPeter Drahoš <drahosp@gmail.com>2012-04-03 01:37:20 +0200
commit03b42647d80c33950302f3eed58b83c0d9ae846c (patch)
treeff8a50c1a4cc14b6068908fbb30df82d5323cd6d
parent09ebcf0eda90563876501ea9b77bca40121ecfe4 (diff)
downloadlua-03b42647d80c33950302f3eed58b83c0d9ae846c.tar.gz
updated travis build with cleaner output for 5.1 branch
-rw-r--r--.travis.yml22
1 files changed, 5 insertions, 17 deletions
diff --git a/.travis.yml b/.travis.yml
index 4811006..10d2477 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,32 +5,20 @@
# Since CMake is not directly supported we use erlang VMs
language: erlang
-# Try using multiple Lua Implementations
-env:
- - LUA="" # Use automatic dependencies
- - LUA="luajit" # Try with LuaJIT
-# - CMAKE="-DCMAKE_VARIABLE=value"
-# - LUA="lua-5.1.5"
-
-# Allow luajit to fail
-matrix:
- allow_failures:
- - env: LUA="luajit"
-
# We need CMake and LuaDist
install:
- export MODULE=`basename $PWD`
- - sudo apt-get install cmake
- - git clone git://github.com/LuaDist/bootstrap.git _luadist
+ - sudo apt-get install cmake >/dev/null 2>&1
+ - git clone git://github.com/LuaDist/bootstrap.git _luadist >/dev/null 2>&1
- cd _luadist
- - git submodule update --init
- - ./bootstrap
+ - git submodule update --init >/dev/null 2>&1
+ - ./bootstrap >/dev/null 2>&1
- export LUADIST=$PWD/_install/bin/luadist
- cd $HOME
# Use LuaDist to deploy the module
script:
- - $LUADIST _test install $LUA $MODULE-scm $CMAKE -verbose=true -debug=true -test=true
+ - $LUADIST _test install "lua~=5.1" -verbose=true -test=true
# Execute additional tests or commands
#after_script: