main: run debi and debc

This commit is contained in:
Dawid Dziurla 2020-12-26 17:13:03 +01:00 committed by GitHub
parent 27df2d7538
commit 75e45aab50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

20
main.js
View file

@ -128,7 +128,7 @@ async function main() {
]) ])
core.endGroup() core.endGroup()
core.startGroup("Build package") core.startGroup("Build packages")
await exec.exec("docker", [ await exec.exec("docker", [
"exec", "exec",
container, container,
@ -136,7 +136,23 @@ async function main() {
]) ])
core.endGroup() 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", [ await exec.exec("docker", [
"exec", "exec",
container, container,