From 03b42647d80c33950302f3eed58b83c0d9ae846c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Draho=C5=A1?= Date: Tue, 3 Apr 2012 01:37:20 +0200 Subject: updated travis build with cleaner output for 5.1 branch --- .travis.yml | 22 +++++----------------- 1 file 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: -- cgit v1.2.1