Forward pesde & wally stdout & stderr

This commit is contained in:
marked 2025-03-02 16:11:32 +01:00
parent 0651d033ed
commit 7d7aa8de33
2 changed files with 22 additions and 5 deletions

View file

@ -4,7 +4,7 @@ local sync = require("./sync")
local res = sync("jecs")
if not res.ok then
print(`Can't continue: {res.err}`)
print(`Syncing failed, aborting.`)
return
end

View file

@ -130,22 +130,39 @@ local function release(origin: string, scopes: { wally: string, pesde: string },
local cwd = process.cwd .. origin
local res_pesde
if not dry then
process.spawn("pesde", { "publish", "-y" }, { cwd = cwd })
res_pesde = process.spawn("pesde", { "publish", "-y" }, { cwd = cwd })
else
process.spawn("pesde", { "publish", "-d", "-y" }, { cwd = cwd })
res_pesde = process.spawn("pesde", { "publish", "-d", "-y" }, { cwd = cwd })
end
if not res_pesde.ok then
progress:stop()
print(`-- Pesde error:\nstdout\n{res_pesde.stdout}\nstderr\n{res_pesde.stderr}`)
return result(false, `Pesde error:\nstdout\n{res_pesde.stdout}\nstderr\n{res_pesde.stderr}`)
end
progress:nextStage()
local res_wally
if not dry then
process.spawn("wally", { "publish" }, { cwd = cwd })
res_wally = process.spawn("wally", { "publish" }, { cwd = cwd })
else
process.spawn("wally", { "package", "--output", "wally.tar.gz" }, { cwd = cwd })
res_wally = process.spawn("wally", { "package", "--output", "wally.tar.gz" }, { cwd = cwd })
end
if not res_wally.ok then
progress:stop()
print(`-- Wally error:\nstdout\n{res_wally.stdout}\nstderr\n{res_wally.stderr}`)
return result(false, `Wally error:\nstdout\n{res_wally.stdout}\nstderr\n{res_wally.stderr}`)
end
progress:stop()
print(`-- Pesde out:\nstdout\n{res_pesde.stdout}\nstderr\n{res_pesde.stderr}`)
print(`-- Wally out:\nstdout\n{res_wally.stdout}\nstderr\n{res_wally.stderr}`)
local took = round_to((os.clock() - begin) * 1_000, 2)
if not dry then
print(`🚀 Published packages {stdio.style("dim")}(took {took}ms){stdio.style("reset")}`)