File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -3,24 +3,24 @@ sudo: false
3
3
4
4
env :
5
5
global :
6
- - LUAROCKS=2.4.3
7
6
- ROCKSPEC=rockspecs/lua-protobuf-scm-1.rockspec
8
7
matrix :
9
8
- LUA="lua 5.1"
10
9
- LUA="lua 5.2"
11
10
- LUA="lua 5.3"
11
+ - LUA="lua 5.4"
12
12
- LUA="luajit 2.0"
13
13
- LUA="luajit 2.1"
14
14
15
15
branches :
16
16
only :
17
17
- master
18
- - new
18
+ - lua54
19
19
20
20
before_install :
21
- - pip install --user hererocks urllib3[secure] cpp-coveralls
22
- - hererocks env --$LUA -rlatest # Use latest LuaRocks, install into 'env' directory.
23
- - source env/bin/activate # Add directory with all installed binaries to PATH.
21
+ - curl -O https://raw.githubusercontent.com/luarocks/ hererocks/master/hererocks.py
22
+ - python hererocks.py env --$LUA -rlatest
23
+ - source env/bin/activate
24
24
25
25
install :
26
26
# - sudo luarocks make $ROCKSPEC CFLAGS="-O2 -fPIC -ftest-coverage -fprofile-arcs" LIBFLAG="-shared --coverage"
Original file line number Diff line number Diff line change 204
204
M .private .sortedPairs = sortedPairs
205
205
206
206
-- seed the random with a strongly varying seed
207
- math.randomseed (os.clock ()* 1E11 )
207
+ math.randomseed (math.floor ( os.clock ()* 1E11 ) )
208
208
209
209
local function randomizeTable ( t )
210
210
-- randomize the item orders of the table t
You can’t perform that action at this time.
0 commit comments