action-debian-package/main.js

128 lines
3.9 KiB
JavaScript
Raw Normal View History

2020-03-26 09:34:31 +00:00
const core = require("@actions/core")
const exec = require("@actions/exec")
const firstline = require("firstline")
2020-03-26 14:37:35 +00:00
const hub = require("docker-hub-utils")
2020-03-26 12:26:07 +00:00
const path = require("path")
const fs = require("fs")
2020-03-26 09:34:31 +00:00
2020-03-26 14:37:35 +00:00
function getDistribution(distribution) {
return distribution.replace("UNRELEASED", "unstable")
}
async function getOS(distribution) {
for (const os of ["debian", "ubuntu"]) {
const tags = await hub.queryTags({ user: "library", name: os })
if (tags.find(tag => tag.name == distribution)) {
return os
}
}
}
2020-03-26 09:34:31 +00:00
async function main() {
try {
2020-03-26 14:37:35 +00:00
const sourceRelativeDirectory = core.getInput("source_directory")
const artifactsRelativeDirectory = core.getInput("artifacts_directory")
2020-03-26 09:34:31 +00:00
2020-03-26 12:26:07 +00:00
const workspaceDirectory = process.cwd()
2020-03-26 14:37:35 +00:00
const sourceDirectory = path.join(workspaceDirectory, sourceRelativeDirectory)
const buildDirectory = path.dirname(sourceDirectory)
const artifactsDirectory = path.join(workspaceDirectory, artifactsRelativeDirectory)
const file = path.join(sourceDirectory, "debian/changelog")
2020-03-26 09:34:31 +00:00
const changelog = await firstline(file)
2020-03-26 14:37:35 +00:00
const regex = /^(?<package>.+) \((?<version>[^-]+)-?(?<revision>[^-]+)?\) (?<distribution>.+);/
2020-03-26 09:34:31 +00:00
const match = changelog.match(regex)
2020-03-26 10:06:08 +00:00
const { package, version, revision, distribution } = match.groups
2020-03-26 14:37:35 +00:00
const os = await getOS(getDistribution(distribution))
2020-03-26 12:26:07 +00:00
const container = package + "_" + version
2020-03-26 14:37:35 +00:00
const image = os + ":" + getDistribution(distribution)
2020-03-26 09:34:31 +00:00
2020-03-26 12:26:07 +00:00
fs.mkdirSync(artifactsDirectory, { recursive: true })
2020-03-26 09:34:31 +00:00
core.startGroup("Create container")
await exec.exec("docker", [
"create",
"--name", container,
"--volume", workspaceDirectory + ":" + workspaceDirectory,
2020-03-26 14:37:35 +00:00
"--workdir", sourceDirectory,
2020-03-26 09:34:31 +00:00
"--tty",
image,
"sleep", "inf"
])
core.endGroup()
core.startGroup("Start container")
await exec.exec("docker", [
"start",
container
])
core.endGroup()
2020-03-26 12:26:07 +00:00
if (revision) {
core.startGroup("Create tarball")
await exec.exec("docker", [
"exec",
container,
"tar",
"--exclude-vcs",
"--exclude", "./debian",
2020-03-26 15:00:12 +00:00
"--transform", `s/^\./${package}-${version}/`,
2020-03-26 14:37:35 +00:00
"-cvzf", `${buildDirectory}/${package}_${version}.orig.tar.gz`,
2020-03-26 15:00:12 +00:00
"-C", sourceDirectory,
"./"
2020-03-26 12:26:07 +00:00
])
core.endGroup()
}
2020-03-26 10:06:08 +00:00
2020-03-26 09:34:31 +00:00
core.startGroup("Update packages list")
await exec.exec("docker", [
"exec",
container,
"apt-get", "update"
])
core.endGroup()
core.startGroup("Install development packages")
await exec.exec("docker", [
"exec",
container,
"apt-get", "install", "-y", "dpkg-dev", "debhelper"
])
core.endGroup()
core.startGroup("Install build dependencies")
await exec.exec("docker", [
"exec",
container,
2020-03-26 14:37:35 +00:00
"apt-get", "build-dep", "-y", sourceDirectory
2020-03-26 09:34:31 +00:00
])
core.endGroup()
core.startGroup("Build package")
await exec.exec("docker", [
"exec",
container,
2020-03-26 10:16:30 +00:00
"dpkg-buildpackage", "-tc"
2020-03-26 09:34:31 +00:00
])
core.endGroup()
2020-03-26 10:45:32 +00:00
core.startGroup("Move artifacts")
2020-03-26 10:49:41 +00:00
await exec.exec("docker", [
"exec",
container,
2020-03-26 11:07:14 +00:00
"find",
2020-03-26 14:37:35 +00:00
buildDirectory,
2020-03-26 11:07:14 +00:00
"-maxdepth", "1",
2020-03-26 12:26:07 +00:00
"-name", `${package}_${version}*.*`,
2020-03-26 11:07:14 +00:00
"-type", "f",
"-print",
"-exec", "mv", "{}", artifactsDirectory, ";"
2020-03-26 10:45:32 +00:00
])
core.endGroup()
2020-03-26 09:34:31 +00:00
} catch (error) {
core.setFailed(error.message)
}
}
main()