This repository was archived by the owner on Nov 20, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-17
lines changed
Expand file tree Collapse file tree 1 file changed +5
-17
lines changed Original file line number Diff line number Diff line change 55# Since CMake is not directly supported we use erlang VMs
66language : 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
219install :
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
3220script :
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:
You can’t perform that action at this time.
0 commit comments