diff --git a/action.yml b/action.yml index c9771ce..542f71e 100644 --- a/action.yml +++ b/action.yml @@ -19,6 +19,10 @@ inputs: os_distribution: description: OS distribution name, value from `debian/changelog` is used if not defined required: false + lintian_opts: + description: Command line parameters provided to 'lintian' + required: false + default: "" runs: using: node16 main: main.js diff --git a/main.js b/main.js index 44a7f69..0f4831d 100644 --- a/main.js +++ b/main.js @@ -38,6 +38,7 @@ async function main() { const sourceRelativeDirectory = core.getInput("source_directory") || "./" const artifactsRelativeDirectory = core.getInput("artifacts_directory") || "./" const osDistribution = core.getInput("os_distribution") || "" + const lintianOpts = core.getInput("lintian_opts") || "" const workspaceDirectory = process.cwd() const sourceDirectory = path.join(workspaceDirectory, sourceRelativeDirectory) @@ -132,7 +133,7 @@ async function main() { await exec.exec("docker", [ "exec", container, - "apt-get", "install", "-yq", "-t", imageTag, "dpkg-dev", "debhelper", "devscripts" + "apt-get", "install", "-yq", "-t", imageTag, "dpkg-dev", "debhelper", "devscripts", "lintian" ]) core.endGroup() @@ -165,6 +166,14 @@ async function main() { ]) core.endGroup() + core.startGroup("Container: Run static analysis") + await exec.exec("docker", [ + "exec", + container, + "find", buildDirectory, "-maxdepth", "1", "-name", `*.changes`, "-type", "f", "-print", "-exec", "lintian" `${lintianOpts}` + ]) + core.endGroup() + core.startGroup("Install built packages") await exec.exec("docker", [ "exec",