2022-10-08 16:39:00 +00:00
|
|
|
import * as context from './context';
|
2020-08-18 16:19:47 +00:00
|
|
|
import * as core from '@actions/core';
|
|
|
|
import * as exec from '@actions/exec';
|
|
|
|
|
|
|
|
interface Platforms {
|
|
|
|
supported: string[];
|
|
|
|
available: string[];
|
|
|
|
}
|
|
|
|
|
|
|
|
async function run(): Promise<void> {
|
|
|
|
try {
|
2022-10-08 16:39:00 +00:00
|
|
|
const input: context.Inputs = context.getInputs();
|
|
|
|
|
|
|
|
await core.group(`Docker info`, async () => {
|
|
|
|
await exec.exec('docker', ['version'], {
|
|
|
|
failOnStdErr: false
|
|
|
|
});
|
|
|
|
await exec.exec('docker', ['info'], {
|
|
|
|
failOnStdErr: false
|
2022-10-08 16:23:57 +00:00
|
|
|
});
|
2022-10-08 16:39:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
await core.group(`Pulling binfmt Docker image`, async () => {
|
|
|
|
await exec.exec('docker', ['pull', input.image]);
|
|
|
|
});
|
|
|
|
|
|
|
|
await core.group(`Image info`, async () => {
|
|
|
|
await exec.exec('docker', ['image', 'inspect', input.image]);
|
|
|
|
});
|
|
|
|
|
|
|
|
await core.group(`Installing QEMU static binaries`, async () => {
|
|
|
|
await exec.exec('docker', ['run', '--rm', '--privileged', input.image, '--install', input.platforms]);
|
|
|
|
});
|
|
|
|
|
|
|
|
await core.group(`Extracting available platforms`, async () => {
|
|
|
|
await exec
|
|
|
|
.getExecOutput('docker', ['run', '--rm', '--privileged', input.image], {
|
|
|
|
ignoreReturnCode: true,
|
|
|
|
silent: true
|
|
|
|
})
|
|
|
|
.then(res => {
|
|
|
|
if (res.stderr.length > 0 && res.exitCode != 0) {
|
|
|
|
throw new Error(res.stderr.trim());
|
|
|
|
}
|
|
|
|
const platforms: Platforms = JSON.parse(res.stdout.trim());
|
|
|
|
core.info(`${platforms.supported.join(',')}`);
|
2022-10-08 16:46:17 +00:00
|
|
|
core.setOutput('platforms', platforms.supported.join(','));
|
2022-10-08 16:39:00 +00:00
|
|
|
});
|
|
|
|
});
|
2020-08-18 16:19:47 +00:00
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(error.message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
run();
|