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 5
5
# Since CMake is not directly supported we use erlang VMs
6
6
language : erlang
7
7
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
-
20
8
# We need CMake and LuaDist
21
9
install :
22
10
- 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
25
13
- cd _luadist
26
- - git submodule update --init
27
- - ./bootstrap
14
+ - git submodule update --init >/dev/null 2>&1
15
+ - ./bootstrap >/dev/null 2>&1
28
16
- export LUADIST=$PWD/_install/bin/luadist
29
17
- cd $HOME
30
18
31
19
# Use LuaDist to deploy the module
32
20
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
34
22
35
23
# Execute additional tests or commands
36
24
# after_script:
You can’t perform that action at this time.
0 commit comments