From c27c931c3e63ee9374762101309e0ad10f1a7d6b Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Fri, 17 Jun 2022 12:51:47 +0200 Subject: [PATCH] try not to fail the tests, add an option instead --- action.yml | 3 +++ main.js | 13 ++++++++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/action.yml b/action.yml index 92e6d1f..03e741f 100644 --- a/action.yml +++ b/action.yml @@ -19,6 +19,9 @@ inputs: os_distribution: description: OS distribution name, value from `debian/changelog` is used if not defined required: false + target_release: + description: additional releases (buster-security, buster-backports, etc), space-separated + required: false runs: using: node12 main: main.js diff --git a/main.js b/main.js index d068f96..99bae2e 100644 --- a/main.js +++ b/main.js @@ -32,7 +32,6 @@ async function main() { const sourceRelativeDirectory = core.getInput("source_directory") || "./" const artifactsRelativeDirectory = core.getInput("artifacts_directory") || "./" const osDistribution = core.getInput("os_distribution") || "" - const extraPackages = core.getInput("extra_packages").split(' ') || [] const workspaceDirectory = process.cwd() const sourceDirectory = path.join(workspaceDirectory, sourceRelativeDirectory) @@ -50,6 +49,8 @@ async function main() { const container = pkg const image = imageName + ":" + imageTag + const targetReleases = core.getInput("target_releases").split(' ') || [ imageTag ] + fs.mkdirSync(artifactsDirectory, { recursive: true }) core.startGroup("Print details") @@ -62,7 +63,7 @@ async function main() { arch: cpuArchitecture, image: image, container: container, - extraPackages: extraPackages, + targetReleases: targetReleases, workspaceDirectory: workspaceDirectory, sourceDirectory: sourceDirectory, buildDirectory: buildDirectory, @@ -128,7 +129,7 @@ async function main() { await exec.exec("docker", [ "exec", container, - "apt-get", "install", "-yq", "dpkg-dev", "debhelper", "devscripts" + "apt-get", "install", "-yq", "-t", imageTag, "dpkg-dev", "debhelper", "devscripts" ]) core.endGroup() @@ -137,8 +138,10 @@ async function main() { await exec.exec("docker", [ "exec", container, - "apt-get", "build-dep", "-yq", sourceDirectory - ]) + "apt-get", "build-dep", "-yq", "-t", imageTag + ].concat(Array.prototype.concat(targetReleases.map(function (item) { + return ["-t", item] + }))).concat(sourceDirectory)) core.endGroup() }