52:457f0d22ff68
Anton Shestakov <av6@dwimlabs.net>, Sun, 23 Sep 2018 19:11:09 +0800
pipelines: give it a couple of minutes

previous change 30:c89104014973

examples/log.lua

Permissions: -rw-r--r--

Other formats: Feeds:
local cjson_safe = require 'cjson.safe'
local hglib = require 'hglib'
local client = hglib.Client.open()
client:runcommand({'clone', '-U', 'https://bitbucket.org/av6/lua-hglib', '/tmp/testrepo'})
local code, o, e, d = client:runcommand({'log', '-l', '5', '-T', 'json', '-R', '/tmp/testrepo'})
client:close()
if code == 0 then
local data = cjson_safe.decode(o)
print('Last 5 commits:')
for _, changeset in ipairs(data) do
local firstline = changeset.desc:match('^[^\n]*')
print(changeset.rev .. '·' .. changeset.node:sub(1, 12) .. ' ' .. firstline)
end
else
print("Couldn't get log: " .. e)
end
if #d > 0 then
print('Debug: ')
end