Adding some debugging output
This commit is contained in:
parent
c7f4c07ff6
commit
d8b7e85de5
12
main.js
12
main.js
|
@ -95,6 +95,10 @@ async function main() {
|
||||||
console.log(details)
|
console.log(details)
|
||||||
core.endGroup()
|
core.endGroup()
|
||||||
|
|
||||||
|
core.startGroup("Check sourceDirectory")
|
||||||
|
await exec.exec("ls", ["-la", sourceDirectory])
|
||||||
|
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
|
||||||
|
@ -183,6 +187,14 @@ async function main() {
|
||||||
])
|
])
|
||||||
core.endGroup()
|
core.endGroup()
|
||||||
|
|
||||||
|
core.startGroup("Check sourceDirectory")
|
||||||
|
await exec.exec("docker", [
|
||||||
|
"exec",
|
||||||
|
container,
|
||||||
|
"ls", "-la", sourceDirectory
|
||||||
|
])
|
||||||
|
core.endGroup()
|
||||||
|
|
||||||
if (imageTag != "trusty") {
|
if (imageTag != "trusty") {
|
||||||
core.startGroup("Install build dependencies")
|
core.startGroup("Install build dependencies")
|
||||||
await exec.exec("docker", [
|
await exec.exec("docker", [
|
||||||
|
|
Loading…
Reference in a new issue