forked from waja/action-debian-package
Compare commits
1 commit
9962cfdf2a
...
b37da5f37a
Author | SHA1 | Date | |
---|---|---|---|
|
b37da5f37a |
35
main.js
35
main.js
|
@ -68,8 +68,8 @@ async function main() {
|
||||||
const match = changelog.match(regex)
|
const match = changelog.match(regex)
|
||||||
const { pkg, epoch, version, revision, packageDistribution } = match.groups
|
const { pkg, epoch, version, revision, packageDistribution } = match.groups
|
||||||
const distribution = osDistribution ? osDistribution : packageDistribution
|
const distribution = osDistribution ? osDistribution : packageDistribution
|
||||||
const imageName = await getImageName(distribution)
|
const imageName = "ubuntu"
|
||||||
const imageTag = await getImageTag(imageName, distribution)
|
const imageTag = "jammy"
|
||||||
const container = pkg
|
const container = pkg
|
||||||
const image = imageName + ":" + imageTag
|
const image = imageName + ":" + imageTag
|
||||||
|
|
||||||
|
@ -99,6 +99,16 @@ async function main() {
|
||||||
await exec.exec("ls", ["-la", sourceDirectory])
|
await exec.exec("ls", ["-la", sourceDirectory])
|
||||||
core.endGroup()
|
core.endGroup()
|
||||||
|
|
||||||
|
core.startGroup("Create test files")
|
||||||
|
await exec.exec("mkdir", ["-p", workspaceDirectory + "/foo"])
|
||||||
|
await exec.exec("touch", [ workspaceDirectory + "/foo/bar.txt"])
|
||||||
|
core.endGroup()
|
||||||
|
|
||||||
|
core.startGroup("Check test files")
|
||||||
|
await exec.exec("ls", ["-la", workspaceDirectory])
|
||||||
|
await exec.exec("ls", ["-la", workspaceDirectory + "/foo"])
|
||||||
|
core.endGroup()
|
||||||
|
|
||||||
if (cpuArchitecture != "amd64") {
|
if (cpuArchitecture != "amd64") {
|
||||||
core.startGroup("Install QEMU")
|
core.startGroup("Install QEMU")
|
||||||
// Need newer QEMU to avoid errors
|
// Need newer QEMU to avoid errors
|
||||||
|
@ -113,7 +123,7 @@ async function main() {
|
||||||
"--platform", `linux/${cpuArchitecture}`,
|
"--platform", `linux/${cpuArchitecture}`,
|
||||||
"--name", container,
|
"--name", container,
|
||||||
"--volume", workspaceDirectory + ":" + workspaceDirectory,
|
"--volume", workspaceDirectory + ":" + workspaceDirectory,
|
||||||
"--workdir", sourceDirectory,
|
"--workdir", workspaceDirectory,
|
||||||
"--env", "DEBIAN_FRONTEND=noninteractive",
|
"--env", "DEBIAN_FRONTEND=noninteractive",
|
||||||
"--env", "DPKG_COLORS=always",
|
"--env", "DPKG_COLORS=always",
|
||||||
"--env", "FORCE_UNSAFE_CONFIGURE=1",
|
"--env", "FORCE_UNSAFE_CONFIGURE=1",
|
||||||
|
@ -131,6 +141,22 @@ async function main() {
|
||||||
])
|
])
|
||||||
core.endGroup()
|
core.endGroup()
|
||||||
|
|
||||||
|
core.startGroup("Check workspaceDirectory")
|
||||||
|
await exec.exec("docker", [
|
||||||
|
"exec",
|
||||||
|
container,
|
||||||
|
"ls", "-la", workspaceDirectory
|
||||||
|
])
|
||||||
|
core.endGroup()
|
||||||
|
|
||||||
|
core.startGroup("Check test files")
|
||||||
|
await exec.exec("docker", [
|
||||||
|
"exec",
|
||||||
|
container,
|
||||||
|
"ls", "-la", workspaceDirectory + "/foo"
|
||||||
|
])
|
||||||
|
core.endGroup()
|
||||||
|
|
||||||
core.startGroup("Check sourceDirectory")
|
core.startGroup("Check sourceDirectory")
|
||||||
await exec.exec("docker", [
|
await exec.exec("docker", [
|
||||||
"exec",
|
"exec",
|
||||||
|
@ -145,7 +171,7 @@ async function main() {
|
||||||
container
|
container
|
||||||
])
|
])
|
||||||
core.endGroup()
|
core.endGroup()
|
||||||
|
/*
|
||||||
core.startGroup("Prepare environment")
|
core.startGroup("Prepare environment")
|
||||||
await exec.exec("docker", [
|
await exec.exec("docker", [
|
||||||
"exec",
|
"exec",
|
||||||
|
@ -284,6 +310,7 @@ async function main() {
|
||||||
"-exec", "mv", "{}", artifactsDirectory, ";"
|
"-exec", "mv", "{}", artifactsDirectory, ";"
|
||||||
])
|
])
|
||||||
core.endGroup()
|
core.endGroup()
|
||||||
|
*/
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
core.setFailed(error.message)
|
core.setFailed(error.message)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue