From 75e45aab50d031383406fc960ddc90df08c2e0dd Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Sat, 26 Dec 2020 17:13:03 +0100 Subject: [PATCH] main: run debi and debc --- main.js | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/main.js b/main.js index 3ac9d2e..d274595 100644 --- a/main.js +++ b/main.js @@ -128,7 +128,7 @@ async function main() { ]) core.endGroup() - core.startGroup("Build package") + core.startGroup("Build packages") await exec.exec("docker", [ "exec", container, @@ -136,7 +136,23 @@ async function main() { ]) core.endGroup() - core.startGroup("Move artifacts") + core.startGroup("Install built packages") + await exec.exec("docker", [ + "exec", + container, + "debi", "--with-depends" + ]) + core.endGroup() + + core.startGroup("List packages contents") + await exec.exec("docker", [ + "exec", + container, + "debc" + ]) + core.endGroup() + + core.startGroup("Move build artifacts") await exec.exec("docker", [ "exec", container,